You are not logged in.
Pages: 1
Module loads fine however dhcp can't get an IP address and setting static IP doesn't work either. Could it be driver issue?
Offline
Define "doesn't work" -- how are you testing?
Configure a static address, then post the output of
ip a s
ip r s
cat /etc/resolv.conf
ping -n -c3 8.8.8.8
ping -n -c3 google.comAre you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
ip a s - output
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eno1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 44:8a:5b:9a:74:fc brd ff:ff:ff:ff:ff:ff
inet 10.0.0.180/24 brd 10.0.0.255 scope global eno1
valid_lft forever preferred_lft forever
inet6 fe80::468a:5bff:fe9a:74fc/64 scope link
valid_lft forever preferred_lft forever
inet6 fe80::dbc5:bb80:1d5d:1357/64 scope link
valid_lft forever preferred_lft forever
3: wlp0s20u5: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
link/ether 7c:dd:90:59:0f:9b brd ff:ff:ff:ff:ff:ffip r s -output
default via 10.0.0.1 dev eno1
10.0.0.0/24 dev eno1 proto kernel scope link src 10.0.0.180 ping -n 3 8.8.8.8 - output
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
From 10.0.0.180 icmp_seq=1 Destination Host Unreachable
From 10.0.0.180 icmp_seq=2 Destination Host Unreachable
From 10.0.0.180 icmp_seq=3 Destination Host Unreachable
--- 8.8.8.8 ping statistics ---
3 packets transmitted, 0 received, +3 errors, 100% packet loss, time 2007ms
pipe 3cat /etc/resolv.conf - output (none its empty)
couldn't ping google.com because there is no dns configured. Also ping my default gateway 10.0.0.1 gave same result as pinging 8.8.8.8. I really think it's a NIC/driver issue.
Offline
Are you sure 10.0.0.0/24 is the correct subnet, and 10.0.0.1 is your gateway?
Can you `arping -I eno1 10.0.0.1`?
I see nothing that would suggest there is a driver issue -- Intel equipment is very well supported as far as drivers go, and there's no errors that point to hardware/drivers. Is there anything in dmesg to suggest there is an issue with drivers? The only "odd" thing I see is that you have 2 link-local (fe80::) addresses on eno1, which I've never seen before/can't explain.
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
ya everything is correct and i'll do arping when i boot into the archlinux install disk again.
here is my network information from windows:
Microsoft Windows [Version 6.3.9600]
(c) 2013 Microsoft Corporation. All rights reserved.
Windows IP Configuration
Ethernet adapter Ethernet
Link-local IPv6 Address . . . . . : fe80::1dcd:c308:3484:dd3c%3
IPv4 Address. . . . . . . . . . . : 10.0.0.3
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 10.0.0.1
Last edited by bimm3rboy (2014-10-15 00:58:17)
Offline
ya everything is correct and i'll do arping when i boot into the archlinux install disk again.
You're doing this from the Installation CD, not an actual installation?
here is my network information from windows:
Have you tried using 10.0.0.3 instead of 10.0.0.180?
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
bimm3rboy wrote:ya everything is correct and i'll do arping when i boot into the archlinux install disk again.
You're doing this from the Installation CD, not an actual installation?
bimm3rboy wrote:here is my network information from windows:
Have you tried using 10.0.0.3 instead of 10.0.0.180?
Yes I'm doing this on installation disk (usb drive) because I was told not to install archlinux without internet connection. And I haven't tried 10.0.0.3 i didn't think it would matter because I can use any ip from 10.0.0.2-254.
Last edited by bimm3rboy (2014-10-15 01:09:01)
Offline
And I haven't tried 10.0.0.3 i didn't think it would matter because I can use any ip from 10.0.0.2-254.
It shouldn't, but something isn't working. What kind of modem/router do you have? At a (wild) guess, if it has some kind of ARP issues, it might not be able to find your new address when it has a stale ARP entry for your mac address for example.
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
bimm3rboy wrote:And I haven't tried 10.0.0.3 i didn't think it would matter because I can use any ip from 10.0.0.2-254.
It shouldn't, but something isn't working. What kind of modem/router do you have? At a (wild) guess, if it has some kind of ARP issues, it might not be able to find your new address when it has a stale ARP entry for your mac address for example.
I actually have a windows server machine as my DHCP server, yesterday I deleted the ip lease from my dhcp server for that mac address and that didn't fix the issue either. So i doubt it's a arp issue but I will try that as my static ip when i reboot again into the installation disk.
Offline
Is the Windows server your gateway/router as well?
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
Is the Windows server your gateway/router as well?
Nope the windows server is just a dhcp server. My router is my gateway.
Offline
OK, so your router could still have ARP issues or something potentially. A network diagram would be useful here.
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
OK, so your router could still have ARP issues or something potentially. A network diagram would be useful here.
here is a simple diagram im not sure if it's helpful

Offline
OK, that's pretty much what I thought, but good to confirm ![]()
Let me know how you with the arping command.
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
Pages: 1