<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Can't get pop-3 working in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796794#M79079</link>
    <description>Reformatted and reinstalled RedHat 7.1 Linux on an HP  8500 running as a dedicated web server and firewall for my LAN. Sendmail works.  ipop3 in xinetd.d is set to on. netstat -an shows port 110 listening. I can telnet to localhost 110 successfully but only when I am logged on to the server. Can't telnet to port 110 from the LAN. Can telnet Ok to port 25. Can send and receive email manually with telnet and the mail command.&lt;BR /&gt;&lt;BR /&gt;How can I determine what is blocking remote access to port 110 ??&lt;BR /&gt;&lt;BR /&gt;Many thanks in advance !!</description>
    <pubDate>Thu, 29 Aug 2002 12:57:20 GMT</pubDate>
    <dc:creator>Vernon Brown_3</dc:creator>
    <dc:date>2002-08-29T12:57:20Z</dc:date>
    <item>
      <title>Can't get pop-3 working</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796794#M79079</link>
      <description>Reformatted and reinstalled RedHat 7.1 Linux on an HP  8500 running as a dedicated web server and firewall for my LAN. Sendmail works.  ipop3 in xinetd.d is set to on. netstat -an shows port 110 listening. I can telnet to localhost 110 successfully but only when I am logged on to the server. Can't telnet to port 110 from the LAN. Can telnet Ok to port 25. Can send and receive email manually with telnet and the mail command.&lt;BR /&gt;&lt;BR /&gt;How can I determine what is blocking remote access to port 110 ??&lt;BR /&gt;&lt;BR /&gt;Many thanks in advance !!</description>
      <pubDate>Thu, 29 Aug 2002 12:57:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796794#M79079</guid>
      <dc:creator>Vernon Brown_3</dc:creator>
      <dc:date>2002-08-29T12:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 working</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796795#M79080</link>
      <description>How is your firewall configured?&lt;BR /&gt;I don't believe that POP3 is allowed in any of the default firewall configs so you'll have to be explicit.&lt;BR /&gt;&lt;BR /&gt;Paul</description>
      <pubDate>Thu, 29 Aug 2002 13:11:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796795#M79080</guid>
      <dc:creator>Paul R. Dittrich</dc:creator>
      <dc:date>2002-08-29T13:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 working</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796796#M79081</link>
      <description>Thaks Paul !&lt;BR /&gt;I'm using the default ipchains that installed with RH 7.1. I'm not sure where the config files are. I found ipchains in /etc/ipchains but am not sure how to  format an entry to allow pop3.&lt;BR /&gt;&lt;BR /&gt;1. How to format the ipchains entry ?&lt;BR /&gt;2. Is the ipchains in /etc the correct config file ?</description>
      <pubDate>Thu, 29 Aug 2002 13:31:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796796#M79081</guid>
      <dc:creator>Vernon Brown_3</dc:creator>
      <dc:date>2002-08-29T13:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 working</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796797#M79082</link>
      <description>As I recall  ipchains -L  will list your current config.&lt;BR /&gt;&lt;BR /&gt;For the details you want, try this URL:&lt;BR /&gt;&lt;A href="http://www.tldp.org/HOWTO/IPCHAINS-HOWTO.html" target="_blank"&gt;http://www.tldp.org/HOWTO/IPCHAINS-HOWTO.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Paul</description>
      <pubDate>Thu, 29 Aug 2002 19:46:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796797#M79082</guid>
      <dc:creator>Paul R. Dittrich</dc:creator>
      <dc:date>2002-08-29T19:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 working</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796798#M79083</link>
      <description>Vernon, to allow pop3 you'll need to construct a ruleset similar to this:&lt;BR /&gt;&lt;BR /&gt;ipchains -A input -p tcp --source-port 110 -j ACCEPT&lt;BR /&gt;&lt;BR /&gt;with an optional specification as to on which interface the packet originates:&lt;BR /&gt;&lt;BR /&gt;ipchains -A input -p tcp -i interface --source-port 110 -j ACCEPT&lt;BR /&gt;&lt;BR /&gt;Recommend you look into any of the firewalling scripts that are out there -- watchdog, shorewall (iptables vice chains) and others. Check out &lt;A href="http://freshmeat.net" target="_blank"&gt;http://freshmeat.net&lt;/A&gt; and search for ipchains firewall for more. &lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;Mark</description>
      <pubDate>Thu, 29 Aug 2002 23:16:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796798#M79083</guid>
      <dc:creator>Mark Fenton</dc:creator>
      <dc:date>2002-08-29T23:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 working</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796799#M79084</link>
      <description>Thanks Mark, and Paul.&lt;BR /&gt;&lt;BR /&gt;That got it working !&lt;BR /&gt;&lt;BR /&gt;I found /etc/sysconfig/ipchains and added an entry for port 110 by copying the entry for port 80 and changing 80 to 110.&lt;BR /&gt;&lt;BR /&gt;Mark; I ment to assign 10 points -- mouse slipped :( For some reason I have to submit twice before the points will appear on the messages.</description>
      <pubDate>Fri, 30 Aug 2002 18:04:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796799#M79084</guid>
      <dc:creator>Vernon Brown_3</dc:creator>
      <dc:date>2002-08-30T18:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 working</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796800#M79085</link>
      <description>You SHOULD not use your port 80 ipchains entry as a template for popmail.&lt;BR /&gt;&lt;BR /&gt;You want any user to access your web server, if its intent is a public server.&lt;BR /&gt;&lt;BR /&gt;Do you want the entire world to be able to use popmail?&lt;BR /&gt;&lt;BR /&gt;If you are letting your users access their mail from the outside, then you need full access, if however, you only let your users access their popmail while in the office or dialed in, restrict access to your local network.&lt;BR /&gt;&lt;BR /&gt;For example, if your local network is 192, this would be the ipchains entry.&lt;BR /&gt;&lt;BR /&gt;-A input -s 192.168.0.1/0 -d 192.168.0.1/0 110 -p tcp -y -j ACCEPT&lt;BR /&gt;&lt;BR /&gt;-s is source, -d is where you want it to go, such as directing it through an Exchange server and whatnot.  The exchange server will have to let the Linux box do relay.&lt;BR /&gt;&lt;BR /&gt;I know, popmail can and should be configured to require an encrypted login, but there are security exploits and holes in the various products. Openning up this port to the public internet is a security risk.&lt;BR /&gt;&lt;BR /&gt;I run and NSP and will have to open up things, but it will be on a IP address by IP address basis.  Only IP's I authorize will be permitted to relay via popmail.&lt;BR /&gt;&lt;BR /&gt;Steve&lt;BR /&gt;&lt;BR /&gt;I do it one address at a time, so</description>
      <pubDate>Tue, 10 Sep 2002 17:15:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796800#M79085</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2002-09-10T17:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 working</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796801#M79086</link>
      <description>Thanks Steven; I do have a couple of users who are outside my local network and use my server for their email.&lt;BR /&gt;&lt;BR /&gt;I do, however, need to restrict Telnet and FTP to the local network. Can you conjure up an entry that would do that ??  Would be a great help; now I have to turn off Telnet and FTP in /etc/xinetd.d and reboot and the ADSL-START in my script times out as many as six times before it gets connected.&lt;BR /&gt;&lt;BR /&gt;Vern</description>
      <pubDate>Tue, 10 Sep 2002 22:06:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796801#M79086</guid>
      <dc:creator>Vernon Brown_3</dc:creator>
      <dc:date>2002-09-10T22:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 working</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796802#M79087</link>
      <description>This whole thing is actually quite interesing.&lt;BR /&gt;&lt;BR /&gt;Here is the bottom half of my ipchains config file.&lt;BR /&gt;&lt;BR /&gt;-A input -s 0/0 -d 0/0 22 -p tcp -y -j ACCEPT&lt;BR /&gt;-A input -s 0/0 -d 0/0 23 -p tcp -y -j ACCEPT&lt;BR /&gt;-A input -s 0/0 -d 0/0 53 -p tcp -y -j ACCEPT&lt;BR /&gt;-A input -s 0/0 -d 0/0 53 -p udp -j ACCEPT&lt;BR /&gt;-A input -s 0/0 -d 0/0 -i lo -j ACCEPT&lt;BR /&gt;-A input -s 0/0 -d 0/0 -i eth1 -j ACCEPT&lt;BR /&gt;-A input -p tcp -s 0/0 -d 0/0 0:1023 -y -j REJECT&lt;BR /&gt;-A input -p tcp -s 0/0 -d 0/0 2049 -y -j REJECT&lt;BR /&gt;-A input -p udp -s 0/0 -d 0/0 0:1023 -j REJECT&lt;BR /&gt;-A input -p udp -s 0/0 -d 0/0 2049 -j REJECT&lt;BR /&gt;-A input -p tcp -s 0/0 -d 0/0 6000:6009 -y -j REJECT&lt;BR /&gt;-A input -p tcp -s 0/0 -d 0/0 7100 -y -j REJECT&lt;BR /&gt;&lt;BR /&gt;Notice whats missing.  Nothing for port 21 ftp. Under these circumstances, a microsoft scripted ftp connection works, but a tool like ws_ftp won't connect.&lt;BR /&gt;&lt;BR /&gt;Here is how I'd go about restricting access to telnet or ftp.  I'm running an NSP, so I pretty much have to let users telnet in from anywhere, though I never use the root password from the outside for fear of it getting intercepted in clear text.&lt;BR /&gt;&lt;BR /&gt;Change the port 23 line to this.&lt;BR /&gt;-A input -s 192.168.0.10/0 -d 0/0 23 -p tcp -y -j ACCEPT&lt;BR /&gt;&lt;BR /&gt;My understanding is that should restrict telnet access in this case to a source address of 192.168.0.10, which is not public and could be any of your local IP addresses.&lt;BR /&gt;&lt;BR /&gt;I've not tried this yet, but you should be able to authorize a range with this syntax.&lt;BR /&gt;&lt;BR /&gt;-A input -s 192.168.0.10/20 -d 0/0 23 -p tcp -y -j ACCEPT&lt;BR /&gt;&lt;BR /&gt;You can work with the -d(destination) parameter to restrict access to certain IP addresses.&lt;BR /&gt;&lt;BR /&gt;For educational purposes, take a look at the port 53 entry, DNS.  I'm doing my own DNS for my NSP, so this has to be wide open.  To get the site to work, I had to authorize both udp and tcp.  I'm not sure why that is, but it probably has something to do with how the client requests the name lookup.&lt;BR /&gt;&lt;BR /&gt;I hope this helps. If you need something more direct or I've made a mistake, feel free to contact me through other means.  If it helps, please assign me a point or two, I'm trying to be helpful but nobody seems to think I deserve a point.&lt;BR /&gt;&lt;BR /&gt;Steve&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Sep 2002 16:49:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-working/m-p/2796802#M79087</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2002-09-11T16:49:08Z</dc:date>
    </item>
  </channel>
</rss>

