I want to see how many interfaces(ethernet cards) are
working using single command?

Answers were Sorted based on User's Feedback



I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / friend

mii-tool

Is This Answer Correct ?    21 Yes 2 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / shrikant

ifconfig
OR
ifconfig -a

Is This Answer Correct ?    15 Yes 0 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / rallapalli

#ifconfig -a

except loopback

Is This Answer Correct ?    4 Yes 0 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / viren

lspci -n | grep 200


class 200 is the address of ethernet adapter

Is This Answer Correct ?    2 Yes 0 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / alf55

The command:

ifconfig -a | (grep -E 'Link encap:|inet6 addr|inet addr:' |
grep -vE 'inet addr:|inet6 addr')

Would result with an output similar to:

eth0 Link encap:Ethernet HWaddr 00:90:f5:b7:6a:1c
lo Link encap:Local Loopback
sit0 Link encap:IPv6-in-IPv4
wlan0 Link encap:Ethernet HWaddr 00:24:d7:a7:16:c0

So the command:

ifconfig -a | (grep -E 'Link encap:|inet6 addr|inet addr:' |
grep -vE 'inet addr:|inet6 addr') | wc -l

would produce the count.

The problem here is that it would also count usages such as
"eth0:0".

To not count those devices use:

ifconfig -a | (grep -E 'Link encap:|inet6 addr|inet addr:' |
grep -vE 'inet addr:|inet6 addr:|:[0-9][0-9]*') |wc -l

Is This Answer Correct ?    1 Yes 0 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / sanil

mii-tool
ifconfig -a

Is This Answer Correct ?    1 Yes 1 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / venkat

lot of single commands:

ifconfig
mii-tool
arp
iftracf

Is This Answer Correct ?    0 Yes 1 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / vel

#ethtool

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Linux Commands Interview Questions

What is $@ in bash?

0 Answers  


What does chmod 644 do?

0 Answers  


How do I find command history in linux?

0 Answers  


What is makefile in unix?

0 Answers  


please advice me what i have to prepare for NIC Exam(22-feb- 09). send me the question pattern for the 2 hrs exam. please sent it to manivannan_it15@yahoo.co.in

0 Answers   Google, PGE,






How do I get to root in linux?

0 Answers  


What is ls command and what it does?

0 Answers  


What is the ipconfig command for linux?

0 Answers  


What is df -i command?

0 Answers  


What are the options of wc command?

0 Answers  


how do u extract files from iso cd images in linux?

5 Answers   Wipro,


What does history command do in linux?

0 Answers  


Categories