![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| removing frame charecters | tkbharani | UNIX for Advanced & Expert Users | 6 | 04-16-2008 02:39 AM |
| EZFB Linux Frame Buffer API 10.00 (Default branch) | iBot | Software Releases - RSS News | 0 | 03-21-2008 05:40 PM |
| frame multiple lines into one | prvnrk | Shell Programming and Scripting | 8 | 02-18-2008 01:20 AM |
| User Frame & Stack | John Budnik | High Level Programming | 0 | 11-03-2005 08:06 AM |
| Frame buffer implementation in Linux | chandra80 | High Level Programming | 0 | 10-25-2005 09:15 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
what does the ifconfig 'frame' field mean?
After typing /sbin/ifconfig eth0, I get these two lines (among others):
RX packets:3781025 errors:0 dropped:0 overruns:0 frame:0 TX packets:1941909 errors:0 dropped:0 overruns:0 carrier:0 What does the 'frame' and 'carrier' field mean? It maybe quite trivial but it has become a major bother for me while doing my current task. |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
The exact meaning will depend on your ethernet card and your ethernet driver. Ethernet needs to see that it has a clear line before it will try to send. Detecting that clear line is called "carrier sense". So your "carrier" would probably include any cases where the card didn't see carrier so it could not send. A drop in carrier during transmission could also be called "carrier". Your carrier field may or may not include such a drop.
Ethernet calls the packets that it sends "frames". A "framing error" is when the card detects a packet that can't possibly be valid. I would expect this to certainly include frames that are not a multiple of 8 bits. It may or may include frames that are way too short or way too long. |
|
#3
|
|||
|
|||
|
Thanks
Thanks for the help.
|
|||
| Google The UNIX and Linux Forums |