<?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 Re: Internet Usage in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048059#M135909</link>
    <description>Like I said, you are catching non-web (and in this case non-network) traffic. All of those lines you pasted are from LOCAL socket connections. They are not network based at all, but just an IPC channel in the kernel. So, you can ignore those. Just look for ones with IP address and valid ports. You should be able to tweak the grep to get rid of these local only sockets.&lt;BR /&gt;&lt;BR /&gt;HTH.</description>
    <pubDate>Wed, 13 Aug 2003 12:52:50 GMT</pubDate>
    <dc:creator>Brian Bergstrand</dc:creator>
    <dc:date>2003-08-13T12:52:50Z</dc:date>
    <item>
      <title>Internet Usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048056#M135906</link>
      <description>My network team advised me that 6 or 8 of my Unix servers are showing over 100 hours of internet usage within the past month. All my servers are Oracle and Pesplesoft servers with no web servers running. The only thing I can think of is ISEE running constantly accress the net. Any ideas on who I can look into the UNIX box to see what is talking to the net?</description>
      <pubDate>Wed, 13 Aug 2003 12:29:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048056#M135906</guid>
      <dc:creator>Nobody's Hero</dc:creator>
      <dc:date>2003-08-13T12:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Internet Usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048057#M135907</link>
      <description>Assumming you are looking for web traffic only.&lt;BR /&gt;&lt;BR /&gt;You could have a cron job that logs the output of `netstat -a | grep 80` to a file somewhere.&lt;BR /&gt;&lt;BR /&gt;This will catch any port 80, or 8080 accesses (outgoing or incoming), but may also catch non-web traffic.&lt;BR /&gt;&lt;BR /&gt;HTH.</description>
      <pubDate>Wed, 13 Aug 2003 12:33:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048057#M135907</guid>
      <dc:creator>Brian Bergstrand</dc:creator>
      <dc:date>2003-08-13T12:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Internet Usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048058#M135908</link>
      <description>netstat -a | grep -i 80 gives me this:&lt;BR /&gt;&lt;BR /&gt;what is pwgr ?&lt;BR /&gt;&lt;BR /&gt;910&lt;BR /&gt;        6b08da00 dgram       0      0         7a512800                0                0                0 /var/spool/sockets/pwgr/client23987&lt;BR /&gt;        6acee400 dgram       0      0         70f96800                0                0                0 /var/spool/sockets/pwgr/client16767&lt;BR /&gt;        7128e800 stream      0      0         80432000                0                0                0 /opt/hpservices/adm/.serverSocket&lt;BR /&gt;        6ad2e800 dgram       0      0         708fd000                0                0                0 /var/spool/sockets/pwgr/client16779&lt;BR /&gt;        6bbbea00 dgram       0      0         726c7800                0                0                0 /var/spool/sockets/pwgr/client16751&lt;BR /&gt;        6295ec00 dgram       0      0         8c287800                0                0                0 /var/spool/sockets/pwgr/client10320&lt;BR /&gt;        611ff000 dgram       0      0         60777800                0                0                0 /var/spool/pwgr/daemon&lt;BR /&gt;        6090f000 dgram       0      0         60c97800                0                0                0 /opt/dcelocal/var/rpc/local/00984/reaper&lt;BR /&gt;        62d0f400 dgram       0      0         86ac7800                0                0                0 /var/spool/sockets/pwgr/client17287&lt;BR /&gt;        6ad0f600 dgram       0      0         71228000                0                0                0 /var/spool/sockets/pwgr/client16773&lt;BR /&gt;        6bc9f800 dgram       0      0         71226800                0                0                0 /var/spool/sockets/pwgr/client16745&lt;BR /&gt;        6ae8f800 dgram       0      0         6a5ac800                0                0                0 /var/spool/sockets/pwgr/client16729&lt;BR /&gt;        62ecfe00 dgram       0      0         93286800                0                0                0 /var/spool/sockets/pwgr/client11125&lt;BR /&gt;        62e7fe00 dgram       0      0         62757800                0                0                0 /var/spool/sockets/pwgr/client4987&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Aug 2003 12:41:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048058#M135908</guid>
      <dc:creator>Nobody's Hero</dc:creator>
      <dc:date>2003-08-13T12:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: Internet Usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048059#M135909</link>
      <description>Like I said, you are catching non-web (and in this case non-network) traffic. All of those lines you pasted are from LOCAL socket connections. They are not network based at all, but just an IPC channel in the kernel. So, you can ignore those. Just look for ones with IP address and valid ports. You should be able to tweak the grep to get rid of these local only sockets.&lt;BR /&gt;&lt;BR /&gt;HTH.</description>
      <pubDate>Wed, 13 Aug 2003 12:52:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048059#M135909</guid>
      <dc:creator>Brian Bergstrand</dc:creator>
      <dc:date>2003-08-13T12:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: Internet Usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048060#M135910</link>
      <description>Ok, so when I run netstat -a I see this:&lt;BR /&gt;&lt;BR /&gt;Active Internet connections (including servers)&lt;BR /&gt;Proto Recv-Q Send-Q  Local Address          Foreign Address        (state)&lt;BR /&gt;tcp        0      0  ihshp10.49979          ihshp10.registrar       TIME_WAIT&lt;BR /&gt;tcp        0      0  *.dtspc                *.*                     LISTEN&lt;BR /&gt;tcp        0      0  *.4045                 *.*                     LISTEN&lt;BR /&gt;tcp        0      0  ihshp10.8052           *.*                     LISTEN&lt;BR /&gt;tcp        0      0  ihshp10.8050           *.*                     LISTEN&lt;BR /&gt;tcp        0      0  ihshp10.8003           *.*                     LISTEN&lt;BR /&gt;tcp        0      0  ihshp10.8002           *.*                     LISTEN&lt;BR /&gt;tcp        0      0  ihshp10.8001           *.*                     LISTEN&lt;BR /&gt;tcp        0      0  ihshp10.8000           *.*                     LISTEN&lt;BR /&gt;tcp        0      0  ihshp10.65340          ihshp10.610             ESTABLISHED&lt;BR /&gt;tcp        0      0  ihshp10.57068          ihshp14.1521            ESTABLISHED&lt;BR /&gt;tcp        0      0  ihshp10.57065          ihshp14.1521            ESTABLISHED&lt;BR /&gt;tcp        0      0  ihshp10.57062          ihshp14.1521            ESTABLISHED&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;like ihshp10.57602&lt;BR /&gt;&lt;BR /&gt;What is 57602, a port being used?&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Aug 2003 13:08:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048060#M135910</guid>
      <dc:creator>Nobody's Hero</dc:creator>
      <dc:date>2003-08-13T13:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Internet Usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048061#M135911</link>
      <description>Ask your network team how they define internet usage. Are they looking at a specific range of tcp ports, or at all traffic hitting the firewall, or what?&lt;BR /&gt;&lt;BR /&gt;Do you have sendmail running on these servers? Do your applications or databases send automated mail outside your network, to a pop mailer outside your network?  Check with your applications people to see if you had anyone coming in via telnet or ftp or ssh from outside your network to do work on any of your systems.&lt;BR /&gt;&lt;BR /&gt;Are your running security_patch_check on these systems, or doing any other FTPs to systms outside your network?  If this the first time your network group has run this sort of audit, they may actually be seeing a normal month's usage of the network.&lt;BR /&gt;&lt;BR /&gt;mark</description>
      <pubDate>Wed, 13 Aug 2003 13:09:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048061#M135911</guid>
      <dc:creator>Mark Greene_1</dc:creator>
      <dc:date>2003-08-13T13:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: Internet Usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048062#M135912</link>
      <description>The network traffice might be caused by ISEEs polling mechanism. The polling is necessary to recieve updates of any open cases and for outstanding map requests, as the internet connection is only outbound. If the network traffic is causing any problems, there is a way to change the polling rate but be aware that this will reduce the functions the polling offers. to reduce the interval edit the file: &lt;BR /&gt;/opt/hpservices/vendors/HP_Services/vendor.pref&lt;BR /&gt;and change the variable "POLL_INTERVAL". By default it is set to 190 seconds. The systems should at least poll a few times per day. After changing the POLL_INTERVAL restart the hpservices by /sbin/init.d/hpservices stop/start&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Aug 2003 09:35:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048062#M135912</guid>
      <dc:creator>Frauke Denker_2</dc:creator>
      <dc:date>2003-08-20T09:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Internet Usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048063#M135913</link>
      <description>Your netstat does not show any traffic to the internet.  At least there are no established connections.  Your only connections are between two machines with similar names so I assume they are both local.  &lt;BR /&gt;&lt;BR /&gt;tcp 0 0 ihshp10.65340 ihshp10.610 ESTABLISHED &lt;BR /&gt;tcp 0 0 ihshp10.57068 ihshp14.1521 ESTABLISHED &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The 65340 is the port it (the local machine called ihshp10) used as the source of the connnection.  (Port numbers are chosen at random these days.  They used to go up one at a time but a spoofer could exploit the predictability  so they changed it.)  It made a connection to itself on port 610.  TCP/IP is often used to communicte between two processes running on the same machine so this is normal.  610 is a registered port and is supposed to be used for:  npmp-local  whatever that may be.&lt;BR /&gt;&lt;BR /&gt;On the second line it uses port 57068 to connect to ihshp14 on port 1521.  1521 is also a registered port and is supposed to be used for:  nCube License Manager&lt;BR /&gt;&lt;BR /&gt;I suspect someone (Peoplesoft or Oracle) is reusing these ports for their own purposes.&lt;BR /&gt;&lt;BR /&gt;You might look at&lt;BR /&gt;netstat -s&lt;BR /&gt;and see if you have a large number or UDP packets being sent out since it does not appear that you are going out to the internet via tcp at this instant in time.  To see these packets would require something like tcpdump, snort or a sniffer.  The network guys should have a sniffer so ask them to tell you where this supposed internet traffic is going to.&lt;BR /&gt;&lt;BR /&gt;Ron</description>
      <pubDate>Thu, 21 Aug 2003 01:36:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048063#M135913</guid>
      <dc:creator>Ron Kinner</dc:creator>
      <dc:date>2003-08-21T01:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: Internet Usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048064#M135914</link>
      <description>so many possible causes. Can't your team give you a little more direction.  Like what web sites were being accessed.&lt;BR /&gt;&lt;BR /&gt;If you installed Bastille and answered the security_patch_check question y there will be some Internet access, though not a lot.  That product could be installed standalone as well.&lt;BR /&gt;&lt;BR /&gt;If you get the website you might get the product.&lt;BR /&gt;&lt;BR /&gt;Also, if you installed IP filter firewall, it can bet set up to provide NAT access to other servers and workstations, which will show up on some analaysis as server access.  This should only be an issue if there is a direct connection to the Internet on those servers.&lt;BR /&gt;&lt;BR /&gt;This gives you an idea of how big a fishing expedition you might have been sent on. If they are tracking access they should be able to tell  you where it goes.&lt;BR /&gt;&lt;BR /&gt;If its those sites with pictures nice guys don't look at, you've got a security problem.&lt;BR /&gt;&lt;BR /&gt;Alos note, if you have netscape or IE for HP-UX  or mozilla installed, any X windows user on your servers can access the net.  Wow that fishing exedition just got huge.&lt;BR /&gt;&lt;BR /&gt;Sorry, home from vacation, in kind of a mood.  Must have been all that thin air.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;BR /&gt;aka&lt;BR /&gt;former Sundance Wyoming HP Sysadmin.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Aug 2003 01:59:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/internet-usage/m-p/3048064#M135914</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-08-21T01:59:33Z</dc:date>
    </item>
  </channel>
</rss>

