<div dir="ltr">On 3 February 2015 at 05:47, PV Juliet <span dir="ltr"><<a href="mailto:pvjuliet@gmail.com" target="_blank">pvjuliet@gmail.com</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br><div dir="ltr"><div><br></div><div>   where i can get all the network interface details including what type of network card, which company ,etc. <br></div><br></div></blockquote><div><br></div><div>There isn't a single place unless you count what goes into a sosreport.   "ethtool -i DEVNAME" is often a good start because that gives you the driver name and the pci slot it's connected to.  Other ethtool options will tell you about the current state of the NIC.<br><br></div><div>Now you've got the pci slot, you can use lspci -vs to get more information.   For example, on one of my machines:<br><br>$ ethtool -i p4p2<br>driver: e1000e<br>version: 2.3.2-k<br>firmware-version: 5.6-2<br>bus-info: 0000:03:00.1<br>supports-statistics: yes<br>supports-test: yes<br>supports-eeprom-access: yes<br>supports-register-dump: yes<br>supports-priv-flags: no<br><br></div><div>$ sudo lspci -vs 0000:03:00.1<br>03:00.1 Ethernet controller: Intel Corporation 82571EB Gigabit Ethernet Controller (rev 06)<br>        Subsystem: Intel Corporation PRO/1000 PT Dual Port Server Adapter<br>        Flags: bus master, fast devsel, latency 0, IRQ 35<br>        Memory at e1a20000 (32-bit, non-prefetchable) [size=128K]<br>        Memory at e1a00000 (32-bit, non-prefetchable) [size=128K]<br>        I/O ports at 2000 [size=32]<br>        Capabilities: [c8] Power Management version 2<br>        Capabilities: [d0] MSI: Enable+ Count=1/1 Maskable- 64bit+<br>        Capabilities: [e0] Express Endpoint, MSI 00<br>        Capabilities: [100] Advanced Error Reporting<br>        Capabilities: [140] Device Serial Number 00-15-17-ff-ff-1d-f5-56<br>        Kernel driver in use: e1000e<br>        Kernel modules: e1000e<br><br></div><div>That should at least be a good start.<br><br>jch<br></div></div></div></div>