Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. network config
  2. config globals 'globals'
  3. option ula_prefix 'fdf4:103e:ff67::/48'
  4. config interface 'lan'
  5. option type 'bridge'
  6. option ifname 'eth1'
  7. option proto 'static'
  8. option netmask '255.255.255.0'
  9. option ip6assign '60'
  10. option ipaddr '192.168.100.2'
  11. option gateway '192.168.100.1'
  12. option dns '8.8.8.8 194.204.152.34 194.204.159.1'
  13. config interface 'wan'
  14. option ifname 'eth0'
  15. option proto 'dhcp'
  16. config interface 'wan6'
  17. option proto '6in4'
  18. option peeraddr '216.66.80.162'
  19. option ip6addr '2001:470:70:cfd::2/64'
  20. option ip6prefix '2001:470:71:cfd::/64'
  21. option tunnelid 'x'
  22. option username 'x'
  23. option password 'x'
  24.  
  25. firewall config
  26. config defaults
  27. option syn_flood '1'
  28. option input 'ACCEPT'
  29. option output 'ACCEPT'
  30. option forward 'ACCEPT'
  31. config zone
  32. option name 'lan'
  33. option input 'ACCEPT'
  34. option output 'ACCEPT'
  35. option forward 'REJECT'
  36. option network 'lan'
  37. config zone
  38. option name 'wan'
  39. option output 'ACCEPT'
  40. option masq '1'
  41. option mtu_fix '1'
  42. option input 'ACCEPT'
  43. option network 'wan wan6'
  44. option forward 'REJECT'
  45. config forwarding
  46. option src 'lan'
  47. option dest 'wan'
  48.  
  49. config rule
  50. option name 'Allow-protocol 41'
  51. option src wan
  52. option proto 41
  53. option target ACCEPT
  54. config rule
  55. option name 'Allow-protocol 59'
  56. option src 'wan'
  57. option proto '59'
  58. option target 'ACCEPT'
  59. option extra '-m length --length 40'
  60.  
  61.  
  62.  
  63.  
  64. Fri Aug 18 21:51:34 2017 user.notice 6in4-wan6: update 1/3: nochg 178.219.126.190
  65. Fri Aug 18 21:51:34 2017 user.notice 6in4-wan6: updated
  66.  
  67.  
  68. 22:21:15-root@main:~$ ip -6 route show
  69. default from 2001:470:70:cfd::/64 dev 6in4-wan6 metric 1024
  70. default from 2001:470:71:cfd::/64 dev 6in4-wan6 metric 1024
  71. 2001:470:70:cfd::/64 dev 6in4-wan6 metric 256
  72. 2001:470:71:cfd::/64 dev br-lan metric 1024
  73. unreachable 2001:470:71:cfd::/64 dev lo metric 2147483647 error -148
  74. fdf4:103e:ff67::/64 dev br-lan metric 1024
  75. unreachable fdf4:103e:ff67::/48 dev lo metric 2147483647 error -148
  76. fe80::/64 dev br-lan metric 256
  77. fe80::/64 dev 6in4-wan6 metric 256
  78. fe80::/64 dev eth0 metric 256
  79. fe80::/64 dev wlan0 metric 256
  80. unreachable default dev lo metric -1 error -128
  81. ff00::/8 dev br-lan metric 256
  82. ff00::/8 dev 6in4-wan6 metric 256
  83. ff00::/8 dev eth0 metric 256
  84. ff00::/8 dev wlan0 metric 256
  85. unreachable default dev lo metric -1 error -128
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement