Advertisement
Guest User

network

a guest
May 23rd, 2013
12,799
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. config interface 'loopback'
  2. option ifname 'lo'
  3. option proto 'static'
  4. option ipaddr '127.0.0.1'
  5. option netmask '255.0.0.0'
  6.  
  7. config interface 'lan'
  8. option ifname 'eth0'
  9. option type 'bridge'
  10. option proto 'static'
  11. option ipaddr '172.16.42.1'
  12. option netmask '255.255.255.0'
  13. option gateway '172.16.42.42'
  14. option dns '8.8.8.8'
  15.  
  16. config interface 'wan'
  17. option ifname 'wlan0'
  18. option proto 'dhcp'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement