- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: ifconfig problem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2002 10:43 PM
07-13-2002 10:43 PM
when I use /usr/local/bin/
start-pppoe to connect network
it will show /sbin/ifconfig : no such file or directory
But when I check
/sbin/ifconfig ,
ifconfig is there
And when I use ifconfig eth0 to check network ,
it will also show bash:/sbin/ifconfig : no such file or directory .
Can any one help me?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2002 04:09 AM
07-14-2002 04:09 AM
Re: ifconfig problem
What does ls -la /sbin/ifconfig return ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2002 10:29 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2002 01:32 AM
07-15-2002 01:32 AM
Re: ifconfig problem
seems like /sbin/ifconfig is a symbolic link which points to a no longer existing file. Check this out usine ls -l /sbin/ifconfig. This should show you where the link is pointing to.
Allways stay on the bright side of life!
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2002 06:29 PM
07-15-2002 06:29 PM
Re: ifconfig problem
hth
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2002 07:38 PM
07-15-2002 07:38 PM
Re: ifconfig problem
I use ls -la /sbin/ifconfig,it return
rwxr-xr-x ..................
and there is no eth0 in /dev/...
and ifconfig is not symbolic link ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2002 10:00 AM
07-16-2002 10:00 AM
Re: ifconfig problem
I thought it's normal that /dev/eth0 doesnt
exists because its actually an alias to
your ethernet driver. Correct me if i am
wrong.
regards,
Steven
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2002 11:05 AM
07-16-2002 11:05 AM
Re: ifconfig problem
What is the output of
# ifconfig
What it should be is something like:
eth0 Link encap:Ethernet HWaddr 00:90:27:91:DB:86
inet addr:aaa.bbb.ccc.ddd Bcast:aaa.bbb.ccc.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:7693205 errors:0 dropped:0 overruns:0 frame:0
TX packets:482814 errors:0 dropped:0 overruns:0 carrier:0
collisions:0
RX bytes:733504895 (699.5 Mb) TX bytes:63812303 (60.8 Mb)
eth1 Link encap:Ethernet HWaddr 00:A0:C9:05:F2:77
inet addr:192.168.0.1 Bcast:192.168.0.255 Mask:255.255.255.0
EtherTalk Phase 2 addr:8/35
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:796619 errors:0 dropped:0 overruns:0 frame:0
TX packets:651925 errors:0 dropped:0 overruns:6 carrier:0
collisions:0
RX bytes:137205783 (130.8 Mb) TX bytes:254992358 (243.1 Mb)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
EtherTalk Phase 2 addr:0/0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:1743106 errors:0 dropped:0 overruns:0 frame:0
TX packets:1743106 errors:0 dropped:0 overruns:0 carrier:0
collisions:0
RX bytes:373798800 (356.4 Mb) TX bytes:373798800 (356.4 Mb)
Where eth0 et al are replaced by your network devices (modem, whatever)
If you are only seeing output for the lo, then the problem is probably that you haven't loaded the driver for your ethernet adapter, and will need to check why.
# service network status
should return the status of your configured network devices. If there are none, you will need to configure them.
Let us know!
Mark