Sorry again about the formatting. Let’s see if I can get it right this time.
I should have known that my local DNS server would be called into question. Sorry about that. Here’s something better (I hope):
pinball@localhost:~$ cat /etc/resolv.conf
# Generated by NetworkManager
nameserver 1.1.1.1
nameserver 1.0.0.1
pinball@localhost:~$
Ok. No more “stories”. Here’s the output of ping:
pinball@localhost:/$ ping forums.opensuse.org
ping: forums.opensuse.org: Name or service not known
pinball@localhost:/$
pinball@localhost:/$ ping 195.135.221.140 -c 4
PING 195.135.221.140 (195.135.221.140) 56(84) bytes of data.
64 bytes from 195.135.221.140: icmp_seq=1 ttl=53 time=124 ms
64 bytes from 195.135.221.140: icmp_seq=2 ttl=53 time=123 ms
64 bytes from 195.135.221.140: icmp_seq=3 ttl=53 time=127 ms
64 bytes from 195.135.221.140: icmp_seq=4 ttl=53 time=122 ms
--- 195.135.221.140 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3004ms
rtt min/avg/max/mdev = 121.753/124.149/126.934/1.875 ms
pinball@localhost:/$
Host command outputs:
pinball@localhost:~$ host forums.opensuse.org
forums.opensuse.org has address 195.135.221.140
forums.opensuse.org has IPv6 address 2001:67c:2178:8::16
forums.opensuse.org mail is handled by 0 mx1.opensuse.org.
forums.opensuse.org mail is handled by 0 mx2.opensuse.org.
pinball@localhost:~$
pinball@localhost:~$ host 195.135.221.140
140.221.135.195.in-addr.arpa domain name pointer proxy-nue.opensuse.org.
pinball@localhost:~$
And I’ll throw in dig too, in case that provides any additional info:
pinball@localhost:~$ dig forums.opensuse.org
; <<>> DiG 9.18.18 <<>> forums.opensuse.org
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 9761
;; flags: qr rd ra ad; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
;; QUESTION SECTION:
;forums.opensuse.org. IN A
;; ANSWER SECTION:
forums.opensuse.org. 3600 IN A 195.135.221.140
;; Query time: 113 msec
;; SERVER: 1.1.1.1#53(1.1.1.1) (UDP)
;; WHEN: Wed Sep 20 11:13:57 CDT 2023
;; MSG SIZE rcvd: 64
pinball@localhost:~$
pinball@localhost:~$ dig 195.135.221.140
; <<>> DiG 9.18.18 <<>> 195.135.221.140
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 52671
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
;; QUESTION SECTION:
;195.135.221.140. IN A
;; AUTHORITY SECTION:
. 86400 IN SOA a.root-servers.net. nstld.verisign-grs.com. 2023092000 1800 900 604800 86400
;; Query time: 16 msec
;; SERVER: 1.1.1.1#53(1.1.1.1) (UDP)
;; WHEN: Wed Sep 20 11:14:24 CDT 2023
;; MSG SIZE rcvd: 119
pinball@localhost:~$