One technique I have used, as a linux user, to check if the router is alive when I lost configuration and the machines have ipv6 package active, is to plug an ethernet cable from my laptop to the router, ensure that the link is up on the linux side and
# use your eth interface name instead of eth1
$ sudo ip link set eth1 up
$ ping ff02::1%eth1
64 bytes from fe80::f8f8:5ac1:5ac8:31f8%eth1: icmp_seq=1 ttl=64 time=0.126 ms
64 bytes from fe80::b869:f4ff:fe89:9efb%eth1: icmp_seq=1 ttl=64 time=2.02 ms (DUP!)
^C
ff02::1 is the all-hosts ipv6 multicast address. You should receive at least two responses, one from the local host,
another from the router itself. More responses can come if the router has several bridged/switched interfaces.
Then your can try to log in using the local address from the DUP node:
ssh admin@fe80::b869:f4ff:fe89:9efb%eth1
...
and continue recovering the machine