Advertisement
Guest User

Untitled

a guest
Jan 16th, 2013
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. # interfaces(5) file used by ifup(8) and ifdown(8)
  2. auto lo
  3. iface lo inet loopback
  4.  
  5. #Gateway
  6. auto eth0
  7. iface eth0 inet dhcp
  8. pre-up /etc/iptables.rules
  9.  
  10. #Wireless Setup
  11. auto wlan0
  12. iface wlan0 inet manual
  13. pre-up /usr/sbin/hostapd /etc/hostapd/hostapd.conf &
  14.  
  15. #Bridge interface
  16. auto br0
  17. iface br0 inet static
  18. address 10.13.37.1
  19. network 10.13.37.0
  20. netmask 255.255.255.0
  21. broadcast 10.13.37.255
  22. bridge-ports wlan0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement