Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #/etc/network/interfaces
- ##Auto loop
- auto lo
- iface lo inet loopback
- allow-hotplug wlan0
- iface wlan0 inet manual
- wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
- ##WiFi Static IP
- auto wlan0
- iface wlan0 inet static
- address 192.168.1.40
- gateway 192.168.1.1
- netmask 255.255.255.0
- network 192.168.1.1
- broadcast 192.168.255
- ##Ethernet Static IP
- auto eth0
- iface eth0 inet static
- address 192.168.1.40
- gateway 192.168.1.1
- dns-nameservers 8.8.8.8 8.8.4.4
- netmask 255.255.255.0
- network 192.168.1.1
- broadcast 192.168.1.255
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement