Advertisement
Guest User

Untitled

a guest
Sep 12th, 2014
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. auto lo
  2. iface lo inet loopback
  3.  
  4. iface eth0 inet static
  5. pre-up /etc/firewall-openvpn-rules.sh
  6. address 192.168.168.81
  7. netmask 255.255.255.0
  8. gateway 192.168.168.1
  9.  
  10. auto wlan0
  11. allow-hotplug wlan0
  12. iface wlan0 inet manual <------- be sure this says manual
  13. wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
  14.  
  15. iface home inet static <------- the "home" here has to match whatever the id_str variable is in wpa conf
  16. address 192.168.168.80 <------- i went static, but suppose you could go DHCP as well -- change it in line above this
  17. gateway 192.168.168.1
  18. netmask 255.255.255.0
  19.  
  20. iface default inet dhcp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement