Changes between Initial Version and Version 1 of wireguard


Ignore:
Timestamp:
03/06/25 16:06:44 (4 months ago)
Author:
krit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • wireguard

    v1 v1  
     1= Wireguard Open_WRT client
     2
     3file in /etc/config/network
     4{{{
     5config interface 'wg0'
     6        option proto 'wireguard'
     7        option private_key 'kMtWcqDKWPBpZtZMotZhK7ebgYhHdsE5ZQ5DbjxTeEs='
     8        list addresses '10.20.0.13/32'
     9
     10config wireguard_wg0
     11        option description 'wg_chr'
     12        option public_key 'a1vzyij5prL27dz/0lcUmMR5BPEh7KRqCvMMcPIeUB0='
     13        list allowed_ips '10.20.0.0/24'
     14        option route_allowed_ips '1'
     15        option endpoint_host '159.xx.xx.xx'
     16        option endpoint_port '12345'
     17        option persistent_keepalive '25'
     18
     19root@OpenWrt:/etc/config#
     20}}}