Advertisement
Guest User

Untitled

a guest
Dec 10th, 2022
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1.  
  2. config interface 'loopback'
  3. option device 'lo'
  4. option proto 'static'
  5. option ipaddr '127.0.0.1'
  6. option netmask '255.0.0.0'
  7.  
  8. config globals 'globals'
  9. option ula_prefix 'fd50:f086:d64f::/48'
  10.  
  11. config device
  12. option name 'eth0'
  13.  
  14. config device
  15. option type 'bridge'
  16. option name 'br-eth'
  17. list ports 'eth0'
  18. list ports 'wan'
  19.  
  20. config device
  21. option name 'vpn_IF'
  22.  
  23. config device
  24. option name 'lan1'
  25. option macaddr '28:d0:f5:56:4e:43'
  26.  
  27. config device
  28. option name 'lan2'
  29. option macaddr '28:d0:f5:56:4e:43'
  30.  
  31. config device
  32. option name 'lan3'
  33. option macaddr '28:d0:f5:56:4e:43'
  34.  
  35. config device
  36. option name 'lan4'
  37. option macaddr '28:d0:f5:56:4e:43'
  38.  
  39. config interface 'lan'
  40. option route_allowed_ips '1'
  41. option proto 'static'
  42. option netmask '255.255.255.0'
  43. option ip6assign '60'
  44. option ipaddr '192.168.1.170'
  45. option gateway '192.168.1.1'
  46. list dns '192.168.1.1'
  47. option device 'br-eth'
  48. option metric '10'
  49.  
  50. config interface 'vpn_IF'
  51. option route_allowed_ips '1'
  52. option proto 'wireguard'
  53. list addresses '100.100.68.72/32'
  54. list dns '10.255.255.1'
  55. option metric '9'
  56. option private_key 'E###XQ='
  57. option defaultroute '0'
  58.  
  59. config interface 'truenas_IF'
  60. option route_allowed_ips '1'
  61. option proto 'static'
  62. list ipaddr '10.10.10.1/24'
  63. list dns '10.255.255.1'
  64. option delegate '0'
  65. option device 'lan4'
  66. option metric '9'
  67. option defaultroute '0'
  68.  
  69. config wireguard_vpn_IF
  70. option route_allowed_ips '1'
  71. option description 'Windscribe-StaticIP.conf'
  72. option public_key '9###UE='
  73. option preshared_key 'V###vE='
  74. list allowed_ips '0.0.0.0/0'
  75. option endpoint_host '64.188.16.132'
  76. option endpoint_port '443'
  77.  
  78.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement