Martinez, Mike (MHS-ACS)
2002-Jan-09 16:52 UTC
[Shorewall-users] TCP/IP ports and Name of Service
Hey everyone, Here''s a website that has a searchable listing of TCP/IP ports and the name of services that use these ports. http://www.teasmoke.net/ports.pl?spec=1-65000&type=span Cheers, Mike
Martinez, Mike (MHS-ACS)
2002-Jan-09 18:24 UTC
[Shorewall-users] TCP/IP ports and Name of Service
Update on this site: Go to this page to actually do the search http://www.teasmoke.net/ports.pl Sorry Mike -----Original Message----- From: Scott Duncan [mailto:sduncan@cytechconsult.com] Sent: Wednesday, January 09, 2002 11:45 AM To: Martinez, Mike (MHS-ACS) Subject: Re: [Shorewall-users] TCP/IP ports and Name of Service How do you search this list? ----- Original Message ----- From: "Martinez, Mike (MHS-ACS)" <Mike.Martinez@mhs-helpdesk.com> To: <shorewall-users@shorewall.net> Sent: Wednesday, January 09, 2002 8:52 AM Subject: [Shorewall-users] TCP/IP ports and Name of Service> Hey everyone, > > Here''s a website that has a searchable listing of TCP/IP ports and thename> of services that use these ports. > > http://www.teasmoke.net/ports.pl?spec=1-65000&type=span > > Cheers, > Mike > _______________________________________________ > Shorewall-users mailing list > Shorewall-users@shorewall.net > http://www.shorewall.net/mailman/listinfo/shorewall-users >
You could also just look through (or grep) "/etc/services" on your linux box...> -----Original Message----- > From: shorewall-users-admin@shorewall.net > [mailto:shorewall-users-admin@shorewall.net] On Behalf Of > Martinez, Mike (MHS-ACS) > Sent: Wednesday, January 09, 2002 1:25 PM > To: shorewall-users@shorewall.net; ''charlie@theboenings.com'' > Subject: RE: [Shorewall-users] TCP/IP ports and Name of Service > > > Update on this site: > > Go to this page to actually do the search >http://www.teasmoke.net/ports.pl Sorry Mike -----Original Message----- From: Scott Duncan [mailto:sduncan@cytechconsult.com] Sent: Wednesday, January 09, 2002 11:45 AM To: Martinez, Mike (MHS-ACS) Subject: Re: [Shorewall-users] TCP/IP ports and Name of Service How do you search this list? ----- Original Message ----- From: "Martinez, Mike (MHS-ACS)" <Mike.Martinez@mhs-helpdesk.com> To: <shorewall-users@shorewall.net> Sent: Wednesday, January 09, 2002 8:52 AM Subject: [Shorewall-users] TCP/IP ports and Name of Service> Hey everyone, > > Here''s a website that has a searchable listing of TCP/IP ports and thename> of services that use these ports. > > http://www.teasmoke.net/ports.pl?spec=1-65000&type=span > > Cheers, > Mike > _______________________________________________ > Shorewall-users mailing list > Shorewall-users@shorewall.net > http://www.shorewall.net/mailman/listinfo/shorewall-users >_______________________________________________ Shorewall-users mailing list Shorewall-users@shorewall.net http://www.shorewall.net/mailman/listinfo/shorewall-users
On Wednesday 09 January 2002 10:33 am, Alok K. Dhir wrote:> You could also just look through (or grep) "/etc/services" on your linux > box...Nod -- I use the following little script which I place in /usr/bin/port: ------------------------- #!/bin/sh if [ ! $# -eq 1 ]; then echo "`basename $0` <port number>" exit 1 fi grep "\b$1/" /etc/services -------------------------- Example of use: [teastep@ursa posixfs]$ port 445 microsoft-ds 445/tcp microsoft-ds 445/udp [teastep@ursa posixfs]$ -Tom --=20 Tom Eastep \ A Firewall for Linux 2.4.* AIM: tmeastep \ http://www.shorewall.net ICQ: #60745924 \ teastep@shorewall.net -------------------------------------------