Results 1 to 4 of 4

Thread: New Lucid install - why is port 25 listening?

  1. #1
    Join Date
    Nov 2006
    Location
    UK
    Beans
    391
    Distro
    Ubuntu 10.10 Maverick Meerkat

    New Lucid install - why is port 25 listening?

    Hi,

    Just wiped 9.10 and installed Lucid.

    Carry out a netstat -nl and get this

    Proto Recv-Q Send-Q Local Address Foreign Address State
    tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN
    tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN

    Why is port 25 (SMTP) open?

    Thx

  2. #2
    Join Date
    Dec 2007
    Location
    Idaho
    Beans
    4,976
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: New Lucid install - why is port 25 listening?

    It's not, it's listening on the loopback address, meaning your machine is only accepting connections to port 25 from itself.

    I'm assuming it's for system mail. I Just checked on my system, the process that is listening is called master, if you look at the man page for master you'll find it's a daemon for postfix for delivering mail, the system mail in this case.
    "You can't expect to hold supreme executive power just because some watery tart lobbed a sword at you"

    "Don't let your mind wander -- it's too little to be let out alone."

  3. #3
    Join Date
    Feb 2005
    Location
    Texas
    Beans
    Hidden!
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: New Lucid install - why is port 25 listening?

    Quote Originally Posted by yeleek
    Code:
    Proto Recv-Q Send-Q Local Address           Foreign 
    ..     
    tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN
    Why is port 25 (SMTP) open?
    Note that it's listening only on localhost; it's accessible only by you. One reason to run an MTA (and glom onto localhost in this way) is to ensure that you receive system email.

  4. #4
    Join Date
    Nov 2006
    Location
    UK
    Beans
    391
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: New Lucid install - why is port 25 listening?

    Fair enough - Thank you.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •