:: Re: [DNG] New install. Network is n…
Top Page
Delete this message
Reply to this message
Author: Hector Gonzalez Jaime
Date:  
To: dng
Subject: Re: [DNG] New install. Network is not brought all the way up.

On 7/5/25 6:48 AM, David Niklas via Dng wrote:
>> Hi,
>> can you ping the outside networks by ip e.g.:
>>
>> ping 139.178.84.217
>>
>> instead of
>>
>> ping kernel.org
>>
>> Are there any nameservers configured in /etc/resolv.conf e.g.:
>>
>> nameserver 8.8.8.8
>> nameserver 8.8.4.4
>>
>> Is your gateway configure correctly?
>>
>> Ciao,
>> Tito
>>
> Hello,
> I cannot ping 8.8.8.8 from the newly installed machine. The old machine
> (Devuan ASCII), connected to the same router and switch, is able to ping
> anything including 8.8.8.8.
> I really can't think of what could be wrong. I'm beginning to wonder if
> the firewall, which I did not setup, was modified by one of the
> firewall/security packages (E.G. nftables). But that would be weird.


If you can ping your default router:

route add -net default gw xxx.xxx.xxx.xxx   <-ip address of your router

ip route show     will show your routing table, it seems to be missing
this part.

ip addr show      will show your interface names, it may be your
ethernet is not eth0 as your config assumes.

you could also edit  /etc/network/interfaces with your static ip address:

--snip--
auto eth0
iface eth0 inet static
        address your.ip.address/24      <- assuming 255.255.255.0
netmask, if not change the 24 for the proper amount of bits.
        gateway your.gateways.address
---snip---

then run /etc/init.d/networking stop; /etc/init.d/networking start
hope this helps.

--
Hector Gonzalez
cacho@???