Posted: 4 years ago

Filed under: Sysadmin

Tagged with:

Follow comments

Finding port numbers in Linux

Vadim gave me a cool tip for finding out the port numbers for things in linux. You can just look at the /etc/services file to see what port things are registered for.

> grep smtp /etc/services
smtp            25/tcp
mailsmtp            25/udp
mailsmtps           465/tcp
# SMTP over SSL (TLS)

Leave a Reply