TL;DR I can ping 1.1.1.1, but I cannot ping the router on the same network, nor access the GUI from another computer.
I’ve changed NIC’s before, when I swapped motherboards, so I have solved this issue before, but I’m completely stumped with how my setup is currently broken. I know there is an easy solution, I just can’t figure it out.
I can ping the internet:
I can ping itself:
But I can’t ping the router:
I installed ethtools so I could get more info on the NIC. It says Fiber instead of Twisted Pair, but it is a SAS to RJ45, and has worked fine for the past 2 months in my Ubuntu PC. Plug and play. It’s using a nice new Cat6e cable that is allowing internet access, but not LAN access, and the cable works fine plugged into my other 10gbe devices.
Any ideas? I’ve rebooted 3 times now..
I’ve changed NIC’s before, when I swapped motherboards, so I have solved this issue before, but I’m completely stumped with how my setup is currently broken. I know there is an easy solution, I just can’t figure it out.
I can ping the internet:
Code:
# ping 1.1.1.1
PING 1.1.1.1 (1.1.1.1) 56(84) bytes of data.
64 bytes from 1.1.1.1: icmp_seq=1 ttl=60 time=6.18 ms
64 bytes from 1.1.1.1: icmp_seq=2 ttl=60 time=8.98 ms
64 bytes from 1.1.1.1: icmp_seq=3 ttl=60 time=5.98 ms
--- 1.1.1.1 ping statistics ---
3 packets transmitted, 3 recieved, 0% packet loss, time 5ms
rtt min/avg/max/ndev = 5.979/7.043/8.975/1.368 ms
I can ping itself:
Code:
# ping 192.168.100.253
PING 192.168.100.253 (192.168.100.253) 56(84) bytes of data.
64 bytes from 192.168.100.253: icmp_seq=1 ttl=64 time=0.038 m
64 bytes from 192.168.100.253: icmp_seq=2 ttl=64 time=0.026 m
64 bytes from 192.168.100.253: icmp_seq=3 ttl=64 time=0.028 m
--- 192.168.100.253 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 32ms
rtt min/avg/max/mdev 0.026/0.030/0.038/0.008 ms
But I can’t ping the router:
Code:
# ping 192.160.100.254
PING 192.168.100.254 (192.168.100.254) 56(84) bytes of data.
From 192.168.100.253 icmp_seq=1 Destination Host Unreachable
From 192.168.100.253 icmp_seq=2 Destination Host Unreachable
From 192.168.100.253 icmp_seq=3 Destination Host Unreachable
--- 192.168.100.254 ping statistics ---
3 packets transmitted, 0 received, 3 errors, 100% packet loss, time 58ms
pipe 4
I installed ethtools so I could get more info on the NIC. It says Fiber instead of Twisted Pair, but it is a SAS to RJ45, and has worked fine for the past 2 months in my Ubuntu PC. Plug and play. It’s using a nice new Cat6e cable that is allowing internet access, but not LAN access, and the cable works fine plugged into my other 10gbe devices.
Code:
ethtool enp9s0
Settings for enp9s0:
Supported ports: [ FIBRE ]
Supported link modes: 10000baseT/Full
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: 10000baseT/Full
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 10000Mb/s
Duplex: Full
Port: FIBRE
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
Supports Wake-on: d
Wake-on: d
Current message level: 0x00000014 (20)
link ifdown
Link detected: yes
Code:
nano /etc/network/interfaces
auto lo
iface lo inet loopback
iface enp2s0 inet manual
iface enp3s0 inet manual
iface enp9s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.100.253/24
bridge-ports enp2s0
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.100.253/24
bridge-ports enp3s0
bridge-stp off
bridge-fd 0
auto vmbr2
iface vmbr2 inet static
address 192.168.100.253/24
gateway 192.168.100.254
bridge-ports enp9s0
bridge-stp off
bridge-fd 0
Any ideas? I’ve rebooted 3 times now..