I want to view the current running connections of my pc, so how?
Would appreciate your advice!
+ Reply to Thread
Results 1 to 9 of 9
-
-
Are you talking dialup or ethernet as in cable modem?
If you check your Network connections in Control Panel, that would give info as to your connection.
On the other hand, if you are asking who and what is passing through your internet connection, that is much more complex. -
its easy -
open a command windows and type
netstat -a -n"Each problem that I solved became a rule which served afterwards to solve other problems." - Rene Descartes (1596-1650) -
Thanks, BJ_M, didn't know that one. Now I just have to dig out my port references and see what all those are.
-
This is what I have in a bat file on my desktop...
BTW, nbtstat comes in handy too
TITLE Network Statistics
COLOR 1E
CLS
@ECHO OFF
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
ECHO ~~~~~~~~~~~~~~~~~~NET STATS Pre Connection/Ports~~~~~~~~~~~~~~~~~~~~~~
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
netstat -a
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ARP CACHE~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
pause
arp -a
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
ECHO ~~~~~~~~~~~~~~~~~~~~~~~NET STATS Per Protocol~~~~~~~~~~~~~~~~~~~~~~~~~
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
pause
netstat -s | more
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~ROUTE Printed~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
pause
route print
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~Adjust System Time~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
pause
w32tm -once -v
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The End ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
pause -
yes - just netstat -a prob. makes more sense for most - I use the -n myself - but same thing , just a different format ..
good bat file to use ..
NETSTAT [-a] [-e] [-n] [-o] [-s] [-p proto] [-r] [interval]
-a Displays all connections and listening ports.
-e Displays Ethernet statistics. This may be combined with the -s
option.
-n Displays addresses and port numbers in numerical form.
-o Displays the owning process ID associated with each connection.
-p proto Shows connections for the protocol specified by proto; proto
may be any of: TCP, UDP, TCPv6, or UDPv6. If used with the -s
option to display per-protocol statistics, proto may be any of:
IP, IPv6, ICMP, ICMPv6, TCP, TCPv6, UDP, or UDPv6.
-r Displays the routing table.
-s Displays per-protocol statistics. By default, statistics are
shown for IP, IPv6, ICMP, ICMPv6, TCP, TCPv6, UDP, and UDPv6;
the -p option may be used to specify a subset of the default.
interval Redisplays selected statistics, pausing interval seconds
between each display. Press CTRL+C to stop redisplaying
statistics. If omitted, netstat will print the current
configuration information once."Each problem that I solved became a rule which served afterwards to solve other problems." - Rene Descartes (1596-1650) -
NETSTAT [-a] [-e] [-n] [-o] [-s] [-p proto] [-r] [interval]
You can also use the ipconfig (in C:\windows\system32\) to modify your settings as well. Or winipcfg if your in Win 98.
As you probably know you can test your connection with ping. -
An easy way is to use a firewall which has a "Net State" function that can show the currently active connections and the details of these connections. I know Armor2net Personal Firewall can do that. You can have a try! http://www.armor2net.com
Hope this help!
Similar Threads
-
System Running Slow when running dvdshrink
By mn072065 in forum ComputerReplies: 7Last Post: 24th Mar 2009, 19:59 -
Sansa View 8 GB Model how do I convert video for use with the sansa view?
By goheadtry in forum Video ConversionReplies: 1Last Post: 2nd Jun 2008, 00:01 -
DVD Lab - Movie/Title order in connections view
By BeachNut in forum Authoring (DVD)Replies: 5Last Post: 21st Jan 2008, 16:17 -
HD connections?
By James in HD in forum Camcorders (DV/HDV/AVCHD/HD)Replies: 4Last Post: 13th Nov 2007, 17:02 -
whats the current view on DL media?
By rotuts in forum MacReplies: 2Last Post: 31st Oct 2007, 11:08