PBS unreachable after network change
Why this happens
Single-line typos in /etc/network/interfaces are the second most
common cause of “everything was working, now it’s not” reports. The
first is a colleague restarting the wrong service.
The diagnostic trick is to test reachability at every layer:
- Is the local interface up?
ip link show - Does the local subnet work?
ping <same-subnet host> - Does the default route exist?
ip route show default - Does cross-subnet work?
ping <other-subnet host> - Does DNS work?
dig pbs.example.com - Does the application port respond?
nc -vz pbs.example.com 8007
Most network bugs fail at exactly one of these steps.