Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Linux > Linux Networking

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 03-12-2008, 07:54 PM
buck
 
Posts: n/a
ifconfig equivalent for Windows?

I have been searching for hours trying to find a utility for Windows
that will return the same information as ifconfig regarding overruns,
frame, carrier, Etc. and I find nothing at all.

The problem is that we have a mixed network of Linux and Windows boxes
and my main Linux machine's internal facing NIC is showing
RX packets:86272246 errors:3084 dropped:821 overruns:3084 frame:0
TX packets:80610778 errors:0 dropped:0 overruns:4 carrier:0
collisions:0 txqueuelen:1000
RX bytes:4145544363 (3953.4 Mb) TX bytes:3168716203 (3021.9 Mb)

and I need to find the Bad Boy that is causing all those overruns.
Short of booting a live Linux distro on each Windows box, is there
some tool available for detecting the source of the RX overruns?
--
buck

Reply With Quote
  #2 (permalink)  
Old 03-12-2008, 08:13 PM
Geoff Lane
 
Posts: n/a
Re: ifconfig equivalent for Windows?

buck wrote:
> I have been searching for hours trying to find a utility for Windows
> that will return the same information as ifconfig regarding overruns,
> frame, carrier, Etc. and I find nothing at all.


I think ipconfig is the closest windows command line utility.

Geoff Lane
Reply With Quote
  #3 (permalink)  
Old 03-12-2008, 08:58 PM
Shadow_7
 
Posts: n/a
Re: ifconfig equivalent for Windows?

> I think ipconfig is the closest windows command line utility.

ditto.

winipcfg on older windows.

ipconfig /ALL

in combination with

route PRINT

Most of the stuff is gui based. Not that they all of them are accessible
from the menu by default. Control Panel -> System -> Device Manager ->
Network Interface -> Properties -> TCP/IP -> and friends. I'm kind of
surprised that I remember that. I haven't run windows or worked in windows
for several years. Half a decade even. The real trick is regedit.exe
tricks to change your MTU size and stuff. Which varies between versions.

Why do they keep calling it java when it's really C#+-XYZ? As I look at my
java game book, and see that almost every I/O call on it has been
deprecated.
Reply With Quote
  #4 (permalink)  
Old 03-13-2008, 01:23 AM
Rikishi 42
 
Posts: n/a
Re: ifconfig equivalent for Windows?

On 2008-03-12, buck <buck@private.mil> wrote:
>
>
> I have been searching for hours trying to find a utility for Windows
> that will return the same information as ifconfig regarding overruns,
> frame, carrier, Etc. and I find nothing at all.
>
> The problem is that we have a mixed network of Linux and Windows boxes
> and my main Linux machine's internal facing NIC is showing
> RX packets:86272246 errors:3084 dropped:821 overruns:3084 frame:0
> TX packets:80610778 errors:0 dropped:0 overruns:4 carrier:0
> collisions:0 txqueuelen:1000
> RX bytes:4145544363 (3953.4 Mb) TX bytes:3168716203 (3021.9 Mb)
>
> and I need to find the Bad Boy that is causing all those overruns.
> Short of booting a live Linux distro on each Windows box, is there
> some tool available for detecting the source of the RX overruns?


Under the Win9x/ME familly: Start/run/winipcfg

Under NT4, W2K, XP and probably Vista:

'ipconfig' will get you ip address, subnet mask and default gateway.
'ipconfig /all' will get you more details (DNS, DHCP, etc...)

Also, if the machine is configured to use DHCP:
'ipconfig /release' will release the IP to DHCP
'ipconfig /renew' will request an address from the DHCP


--
There is an art, it says, or rather, a knack to flying.
The knack lies in learning how to throw yourself at the ground and miss.
Douglas Adams
Reply With Quote
  #5 (permalink)  
Old 03-23-2008, 08:53 PM
jlfarrar@hotmail.com
 
Posts: n/a
Re: ifconfig equivalent for Windows?

On Mar 12, 6:23*pm, Rikishi 42 <skunkwo...@rikishi42.net> wrote:
> On 2008-03-12, buck <b...@private.mil> wrote:
>
>
>
>
>
> > I have been searching for hours trying to find a utility for Windows
> > that will return the same information as ifconfig regarding overruns,
> > frame, carrier, Etc. and I find nothing at all.

>
> > The problem is that we have a mixed network of Linux and Windows boxes
> > and my main Linux machine's internal facing NIC is showing
> > RX packets:86272246 errors:3084 dropped:821 overruns:3084 frame:0
> > TX packets:80610778 errors:0 dropped:0 overruns:4 carrier:0
> > collisions:0 txqueuelen:1000
> > RX bytes:4145544363 (3953.4 Mb) *TX bytes:3168716203 (3021.9 Mb)

>
> > and I need to find the Bad Boy that is causing all those overruns.
> > Short of booting a live Linux distro on each Windows box, is there
> > some tool available for detecting the source of the RX overruns?

>
> Under the Win9x/ME familly: Start/run/winipcfg
>
> Under NT4, W2K, XP and probably Vista:
>
> 'ipconfig' will get you ip address, subnet mask and default gateway.
> 'ipconfig /all' will get you more details (DNS, DHCP, etc...)
>
> Also, if the machine is configured to use DHCP:
> 'ipconfig /release' will release the IP to DHCP
> 'ipconfig /renew' will request an address from the DHCP
>
> --
> There is an art, it says, or rather, a knack to flying.
> The knack lies in learning how to throw yourself at the ground and miss.
> Douglas Adams


Hey you may want to try the "netsh" commands in windows, this is a
powerful command line.
Try "netsh diag adapter 1".........hope this helps
Reply With Quote
  #6 (permalink)  
Old 03-24-2008, 07:23 AM
buck
 
Posts: n/a
Re: ifconfig equivalent for Windows?

On Sun, 23 Mar 2008 12:53:31 -0700 (PDT), jlfarrar@hotmail.com wrote:

>On Mar 12, 6:23*pm, Rikishi 42 <skunkwo...@rikishi42.net> wrote:
>> On 2008-03-12, buck <b...@private.mil> wrote:
>>
>> > I have been searching for hours trying to find a utility for Windows
>> > that will return the same information as ifconfig regarding overruns,
>> > frame, carrier, Etc. and I find nothing at all.

>>
>> > The problem is that we have a mixed network of Linux and Windows boxes
>> > and my main Linux machine's internal facing NIC is showing
>> > RX packets:86272246 errors:3084 dropped:821 overruns:3084 frame:0
>> > TX packets:80610778 errors:0 dropped:0 overruns:4 carrier:0
>> > collisions:0 txqueuelen:1000
>> > RX bytes:4145544363 (3953.4 Mb) *TX bytes:3168716203 (3021.9 Mb)

>>
>> > and I need to find the Bad Boy that is causing all those overruns.
>> > Short of booting a live Linux distro on each Windows box, is there
>> > some tool available for detecting the source of the RX overruns?


>Hey you may want to try the "netsh" commands in windows, this is a
>powerful command line.
>Try "netsh diag adapter 1".........hope this helps


netsh opens a shell. There is no "diag" and none of the available
commands looks promising. What version of Windows does this work for?
--
buck

Reply With Quote
  #7 (permalink)  
Old 04-01-2008, 04:23 AM
Shadow_7
 
Posts: n/a
Re: ifconfig equivalent for Windows?

> netsh opens a shell. There is no "diag" and none of the available
> commands looks promising. What version of Windows does this work for?


Apparently Vista. I just used netsh for the first time today.

netsh interface ipv4 show subinterfaces
netsh interface ipv4 set subinterface "1" MTU=576 stored=persistent

(or something like that)
I guess that's better than hacking the windows registry to change MTU
size. But still a bit cryptic and relatively undocumented. I had to
google from linux to get that gem. Because I couldn't get anything across
the internet aside from a ping until I made the change. Which is odd
because it worked fine six months ago when I last booted windows.
Reply With Quote
  #8 (permalink)  
Old 04-09-2008, 01:11 AM
lawnman@gmail.com
 
Posts: n/a
Re: ifconfig equivalent for Windows?

On Mar 12, 2:54 pm, buck <b...@private.mil> wrote:
> I have been searching for hours trying to find a utility for Windows
> that will return the same information as ifconfig regarding overruns,
> frame, carrier, Etc. and I find nothing at all.

[...]
> and I need to find the Bad Boy that is causing all those overruns.
> Short of booting a live Linux distro on each Windows box, is there
> some tool available for detecting the source of the RX overruns?
> --
> buck


netstat -es
Reply With Quote
  #9 (permalink)  
Old 04-09-2008, 05:16 AM
buck
 
Posts: n/a
Re: ifconfig equivalent for Windows?

On Tue, 8 Apr 2008 17:11:08 -0700 (PDT), lawnman@gmail.com wrote:

>On Mar 12, 2:54 pm, buck <b...@private.mil> wrote:
>> I have been searching for hours trying to find a utility for Windows
>> that will return the same information as ifconfig regarding overruns,
>> frame, carrier, Etc. and I find nothing at all.

>[...]
>> and I need to find the Bad Boy that is causing all those overruns.
>> Short of booting a live Linux distro on each Windows box, is there
>> some tool available for detecting the source of the RX overruns?
>> --
>> buck

>
>netstat -es



YES! That works well enough. Thank you so much.
--
buck

Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Linux > Linux Networking


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 11:38 AM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Credit Card Consolidation | Mortgage Calculator | Car Accident Lawyer Los Angeles | Credit Cards | Loans



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114