My issue is similar to what is described here: Raspberry Pi has no internet and cannot ping primary router when connected to repeater
I was playing around with PiVPN (WireGuard) and invoked the command pivipn uninstall
- after that the result from trying to ping my router (192.168.1.1) is that the first line is PING 192.168.1.1 ... and all subsequent lines list the Pi's own IP address instead of the router's...? All pings are lost.
arp -n
yields HWadress incomplete
...
I've tried a bunch of things but I'm stumped.
Can anyone point me in the right direction?
EDIT:
Ingo asked for the output from the following commands:
IP ADDR:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
net 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP.LOWER_UP> mtu 1500 qdisc mq master br0 state UP group default qlen 1000
link/ether dc:a6:32:07:55:6f bed ff:ff:ff:ff:ff:ff
inet 192.168.1.12/24 brd 192.168.1.255 scope global dynamic noprefixroute eth0
valid_lft 863473sec preferred_lft 755473sec
inet6 fe80::b5f3::9c5a::7fcc::cdda/64 scope link
valid_lft forever preferred_lft forever
3: br0: <BROADCAST,MULTICAST> mtu 1500 qdisc state state DOWN group default qlen 1000
4: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN group default qlen 1000
link/ether dc:a6:32:07:55:70 brd ff:ff:ff:ff:ff:ff
IP ROUTE:
default via 192.168.1.1 dev eth0 proto dhcp src 192.168.1.12 metric 202
192.168.1.0/24 dev eth0 proto dhcp scope link src 192.168.1.12 metric 202
If I enable these two lines in dhcpcd.conf, the interface br0 gets the address 192.168.1.12 and it kinda works... I'm very confused:
denyinterfaces wlan0 eth0
interface br0
END EDIT
It would be great if this could be resolved - I'm banging my head against the wall... :(
Best regards, Andrew
ip addr
andip route
. – Ingo Jan 01 '21 at 20:38