ifconfig shows the eth port as being up, weird.
Run this please and provide the results.
- Code:
ethtool eth0
It should look something like this.
- Code:
$ ethtool eth0
Settings for eth0:
Supported ports: [ TP ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Supported pause frame use: No
Supports auto-negotiation: Yes
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Advertised pause frame use: No
Advertised auto-negotiation: Yes
Speed: 100Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 1
Transceiver: internal
Auto-negotiation: on
MDI-X: on (auto)
Cannot get wake-on-lan settings: Operation not permitted
Current message level: 0x00000007 (7)
drv probe link
Link detected: yes
post back here but DON'T include the MAC address (6 block hexadecimal code) or any ip addresses for security precaution.
The mac address isn't going to give anyone anything they can use for hacking, at most it would tell us the maker of the board.
I can understand the IP address, as if the IP address is not a private IP address than that could be used by hackers =/
On another note, did you know ifconfig is now deprecated, "ip addr" should be used instead.
To get more information without providing any identifiable information run this please.
- Code:
ip route | grep default
It should look something like this
- Code:
$ ip route | grep default
default via 172.20.42.1 dev eth0 proto static
We can use this information to determine if you have a global or private address. In my case I have a private address meaning I can show you my IP and it wont impact my security at all. It will also provide some useful routing information, if you don't get a response then a default route isn't being configured, likely meaning you are failing to contact the DHCP server. and being that you don't have an IPv4 address, this is somewhat likely (maybe you do have an IPv6 enabled connection, I don't know).