Skip to content

Instantly share code, notes, and snippets.

@boxrick
Last active October 23, 2017 19:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boxrick/aa8fc0829c87186e29f949a55e3ec0b4 to your computer and use it in GitHub Desktop.
Save boxrick/aa8fc0829c87186e29f949a55e3ec0b4 to your computer and use it in GitHub Desktop.
Ubuntu Broken Network
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto enp1s0f0
iface enp1s0f0 inet static
address 172.29.88.51
netmask 255.255.255.192
network 172.29.88.0
broadcast 172.29.88.63
gateway 172.29.88.5
dns-nameservers 172.29.100.40 172.29.100.41
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
auto enp1s0f0
iface enp1s0f0 inet manual
auto bridge0
iface bridge0 inet static
address 172.29.88.51
bridge_fd 0
bridge_ports enp1s0f0
bridge_stp off
bridge_waitport 0
dns-nameservers 172.29.100.40 172.29.100.41
gateway 172.29.88.5
netmask 255.255.255.192
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment