<?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: Block Skype in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/block-skype/m-p/4075767#M738271</link>
    <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Figure out what ports skype uses and use iptables to block it.&lt;BR /&gt;&lt;BR /&gt;Lets say its port 33500&lt;BR /&gt;&lt;BR /&gt;iptables -A INPUT -p all --dport 33500 -j DROP&lt;BR /&gt;&lt;BR /&gt;Some variation of that.&lt;BR /&gt;&lt;BR /&gt;Or you could do this:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.fs-security.com" target="_blank"&gt;http://www.fs-security.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Install firestarter. Configure the firewall in a corporate way, e.g. blacklist everything only allow the ports you want inbound and outbound. Firestarter is an iptables code generator and lets you use an X gui to save coding time.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Tue, 25 Sep 2007 09:38:23 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2007-09-25T09:38:23Z</dc:date>
    <item>
      <title>Block Skype</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/block-skype/m-p/4075766#M738270</link>
      <description>Oi! &lt;BR /&gt;How I block skype? I am using proxy squid and the IPTables.&lt;BR /&gt;&lt;BR /&gt;Thanks!</description>
      <pubDate>Tue, 25 Sep 2007 09:32:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/block-skype/m-p/4075766#M738270</guid>
      <dc:creator>Daniel Caçador</dc:creator>
      <dc:date>2007-09-25T09:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Block Skype</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/block-skype/m-p/4075767#M738271</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Figure out what ports skype uses and use iptables to block it.&lt;BR /&gt;&lt;BR /&gt;Lets say its port 33500&lt;BR /&gt;&lt;BR /&gt;iptables -A INPUT -p all --dport 33500 -j DROP&lt;BR /&gt;&lt;BR /&gt;Some variation of that.&lt;BR /&gt;&lt;BR /&gt;Or you could do this:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.fs-security.com" target="_blank"&gt;http://www.fs-security.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Install firestarter. Configure the firewall in a corporate way, e.g. blacklist everything only allow the ports you want inbound and outbound. Firestarter is an iptables code generator and lets you use an X gui to save coding time.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 25 Sep 2007 09:38:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/block-skype/m-p/4075767#M738271</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2007-09-25T09:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Block Skype</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/block-skype/m-p/4075768#M738272</link>
      <description>It may be possible to use the following:&lt;BR /&gt;&lt;BR /&gt;Block the hard coded nodes IPs for Skype : (this must be done on the gateway or the firewall) &lt;BR /&gt;&lt;BR /&gt;66.235.180.9&lt;BR /&gt;66.235.181.9&lt;BR /&gt;80.160.91.12&lt;BR /&gt;80.161.91.25&lt;BR /&gt;212.72.49.141&lt;BR /&gt;212.72.49.142&lt;BR /&gt;212.72.49.143&lt;BR /&gt;195.215.8.141&lt;BR /&gt;195.215.8.145&lt;BR /&gt;64.246.49.61&lt;BR /&gt;64.246.49.60&lt;BR /&gt;64.246.48.23&lt;BR /&gt;&lt;BR /&gt;Use iptables to block them from a linux gateway: &lt;BR /&gt;&lt;BR /&gt;iptables -A FORWARD -p udp -i eth1 -d 66.235.180.9 -j DROP&lt;BR /&gt;.........&lt;BR /&gt;.....&lt;BR /&gt;....&lt;BR /&gt;iptables -A FORWARD -p udp -i eth1 -d 64.246.48.23 -j DROP &lt;BR /&gt;&lt;BR /&gt;that was to UDP packets , repeat the same for TCP : &lt;BR /&gt;&lt;BR /&gt;iptables -A FORWARD -p tcp -i eth1 -d 66.235.180.9 -j DROP&lt;BR /&gt;.........&lt;BR /&gt;.....&lt;BR /&gt;....&lt;BR /&gt;iptables -A FORWARD -p tcp -i eth1 -d 64.246.48.23 -j DROP&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Other methods to block skype is by using a proxy server and disabling IP string addressed and rejecting the CONNECT command. But using proxy server just to prevent users from using skype is not a good idea.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Tue, 25 Sep 2007 10:08:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/block-skype/m-p/4075768#M738272</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-09-25T10:08:18Z</dc:date>
    </item>
  </channel>
</rss>

