Hello all
I lost the internet service only during the day. Where did the fault lie?
There is a binary answer to the question. Either on my property, or "out there" in the big bad world beyond the copper cable that connected my PC to the exchange.
I had a clue. (strange, because people generally tell me I don't have a clue.) I switched my modem, my PC and the Ethernet cable between the PC and modem. The ONLY common item on my property (after making those switches) was the copper telephone cable.
But I had a second clue. What, I ask, was more likely to cause the internet dropping out at 6AM? Not just at 6AM, but at 6AM on two days in succession? And then, what magic might make the copper cable 'better' overnight? What is more probable? Some technician working "on the gear" or a curiously timed fault in the copper cable. Hmmm? What do you say?
I spent several hours in conversation with the 'technical types' at Spintel, my internet service provider.
They followed their routine troubleshooting procedure to the letter; wasting my time and theirs.
They proceeded on the assumption that the fault was 'at my place', but I had a clue that they were wrong. Wrong, wrong, wrong - for the reasons given above. But the 'techies' stuck with their time-consuming, strategy, wasting my time (and theirs).
How could I (i.e. you) locate a fault and tell the service techs exactly which building to look for their fault? Even if the building was 100km from the copper cable going to my modem?
Puppy Linux has two very nice items in the terminal tool box that will a do that.
These are the "ping" and "traceroute" commands, but used in a script.
See below if you are interested.
собака.
Code: Select all
#! /bin/bash
printf "a logging file, showing i-net connection to #my address,
in NSW, Australia Logging interval is 60m \n" >> net-log_Feb_11.txt
# (to screen only)
printf "The logging process has started \n\n";
for i in `seq 1 48`;
do
printf "pass nr. $i \n";
printf >> net-log_Feb_11.txt "\n record nr. $i - - - - - - - "
date >> net-log_Feb_11.txt; printf " - - - \n"
ping -qc59 -s1024 23.40.73.19 >> net-log_Feb_11.txt
sleep 30m
done
printf "end of test \n" >> net-log_Feb_11.txt
printf "logging test finished \n";
The code above logs connection to a single IP address over 24 hours, logging the result to a text file every 30m.
If the connection lies in your cable, modem or PC hard ware 'ping' will report 'cannot connect to the network'.
If the fault lies beyond the copper cable 'ping' will report n% packet loss. The jitter time will tell somewhat about the quality of the line.
You may substitute 'traceroute' for ping in the script above. Here is the command and the result.
Code: Select all
# traceroute -q 1 -m 12 23.50.217.191
traceroute to 23.50.217.191 (23.50.217.191), 12 hops max, 46 byte packets
1 pc2 (192.168.1.1) 0.610 ms
2 vgi1.bng.syd1.spintel.net.au (115.69.32.1) 13.395 ms
3 ae0-2080.core02.syd1.spintel.net.au (202.172.100.50) 13.669 ms
4 et0-0-1.edge02.syd1.spintel.net.au (202.172.100.7) 13.519 ms
5 *
6 lo1.r03.stem01.syd01.fab.netarch.akamai.com (23.39.110.24) 13.303 ms
7 lo1.r02.spine02.syd01.fab.netarch.akamai.com (23.39.110.11) 13.066 ms
8 lo1.r01.leaf01.syd01.fab.netarch.akamai.com (23.39.110.2) 13.056 ms
9 vlan100.r11.tor01.syd01.fab.netarch.akamai.com (23.46.180.1) 13.540 ms
10 *
11 *
12 *
See the first item on the list? 192.168.1.1 That's my modem talking to my PC.
Is the connection to my modem good? Appears that way, the two are on talking terms.
Item #2 shows a conversation with the first "hop" on the internet. It that's missing, then that may be (just possibly may be) a clue that something's wrong "out there".