<?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: connect two servers which are in different networks in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523064#M87071</link>
    <description>John,&lt;BR /&gt;You said users would connect to the database on AIX from n/w A and n/w B. I am assuming here that your AIX is in a different n/w from n/w A &amp;amp; n/w B.&lt;BR /&gt;&lt;BR /&gt;1. Machines on N/w A &amp;amp; B must have a gateway configured so that they may route the packet to the n/w in which AIX resides.&lt;BR /&gt;2. Similarly AIX machine also must have a route defined so that it can route packet to n/w A as well as n/w B.&lt;BR /&gt;&lt;BR /&gt;Once these configurations are done, you may test the connectivity (using ping/traceroute).&lt;BR /&gt;&lt;BR /&gt;I do not see any reason why do we need 2 cards here...</description>
    <pubDate>Wed, 20 Apr 2005 06:52:02 GMT</pubDate>
    <dc:creator>Suraj Singh_1</dc:creator>
    <dc:date>2005-04-20T06:52:02Z</dc:date>
    <item>
      <title>connect two servers which are in different networks</title>
      <link>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523058#M87065</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have two Aix servers,everyone is on a network,these networks are connected by a router(WAN).&lt;BR /&gt;Every Aix server has one network card.&lt;BR /&gt;I install a database in one of these servers,and that users in network A and B to be connected to &lt;BR /&gt;this database.&lt;BR /&gt;I had search in the net and found these three informations :&lt;BR /&gt;&lt;BR /&gt;1-So as to realize that,i must have 2 network cards.&lt;BR /&gt;2-I must just run "ip route" command in my router.&lt;BR /&gt;3-I must run "route add..." command in both servers.&lt;BR /&gt;&lt;BR /&gt;Did someone has any idea about these informations,are they true?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Best regards.</description>
      <pubDate>Tue, 12 Apr 2005 09:27:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523058#M87065</guid>
      <dc:creator>John CLARK_5</dc:creator>
      <dc:date>2005-04-12T09:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: connect two servers which are in different networks</title>
      <link>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523059#M87066</link>
      <description>sorry,i have linux redhat AS,not Aix.</description>
      <pubDate>Tue, 12 Apr 2005 09:28:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523059#M87066</guid>
      <dc:creator>John CLARK_5</dc:creator>
      <dc:date>2005-04-12T09:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: connect two servers which are in different networks</title>
      <link>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523060#M87067</link>
      <description>Pretty much the same thing either way, though Linux makes more sense, based on where you posted.&lt;BR /&gt;&lt;BR /&gt;You can set up a default route in your network configuration if you wish.&lt;BR /&gt;&lt;BR /&gt;1) Yes, you can use a little Linksys router to connect the two networks and thereby negate the need for a second network card.&lt;BR /&gt;&lt;BR /&gt;2) Sounds like router configuration which is beyond my current skill set.&lt;BR /&gt;&lt;BR /&gt;3) Yes, this will be necessary. Its laid out pretty well in the route man page.&lt;BR /&gt;&lt;BR /&gt;If you provide details, me or others can give you the necessary commands.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 12 Apr 2005 10:10:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523060#M87067</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-04-12T10:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: connect two servers which are in different networks</title>
      <link>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523061#M87068</link>
      <description>What are you using for a router?&lt;BR /&gt;&lt;BR /&gt;You will need to add a route at the gateway so traffic can flow between the networks.  Say you have a network like this:&lt;BR /&gt;&lt;BR /&gt;network 1: 192.168.1.0/24&lt;BR /&gt;network 2: 172.16.1.0/24&lt;BR /&gt;&lt;BR /&gt;router connected to internet, network 1, and network 2 like so:&lt;BR /&gt;&lt;BR /&gt;interface 1: 192.168.1.1&lt;BR /&gt;interface 2: 172.16.1.1&lt;BR /&gt;internet iface: real ip from your ISP&lt;BR /&gt;&lt;BR /&gt;As long as the route table on your gateway device is correct it will see that traffic for network1 is connected to interface 1 and vice versa.  Everything else goes out the internet interface.&lt;BR /&gt;&lt;BR /&gt;Then on your DNS servers you add an entry the database server, the entries will be exactly the same on each network.  Say the database machine is on address 172.16.1.200, clients in the 192.168.1.0 network will still use the 172.16.1.200 address to connect.&lt;BR /&gt;&lt;BR /&gt;--Dave</description>
      <pubDate>Tue, 12 Apr 2005 10:12:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523061#M87068</guid>
      <dc:creator>Dave Falloon</dc:creator>
      <dc:date>2005-04-12T10:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: connect two servers which are in different networks</title>
      <link>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523062#M87069</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I made a serach in the net and i find "ip aliasing".Can you tell me if that resolve my problem, and how can i use it?&lt;BR /&gt;&lt;BR /&gt;Regards.</description>
      <pubDate>Tue, 12 Apr 2005 13:00:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523062#M87069</guid>
      <dc:creator>John CLARK_5</dc:creator>
      <dc:date>2005-04-12T13:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: connect two servers which are in different networks</title>
      <link>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523063#M87070</link>
      <description>Are you using VLANs or any similar network technology?&lt;BR /&gt;&lt;BR /&gt;Is the router the physical link between the two networks, or is it a flat space with multiple networks on the same physical switches/hubs?&lt;BR /&gt;&lt;BR /&gt;If you are just running a flat network space with traffic in 2 networks I guess you could run an IP alias on a single adapter with one address in each of your networks but I have a feeling there is a limitation with this setup.  You would need to have your routes set, and I'm not sure if the ip_alias code can handle aliases on different subnets.&lt;BR /&gt;&lt;BR /&gt;I'll see what I can dig up.&lt;BR /&gt;&lt;BR /&gt;--Dave</description>
      <pubDate>Tue, 12 Apr 2005 16:26:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523063#M87070</guid>
      <dc:creator>Dave Falloon</dc:creator>
      <dc:date>2005-04-12T16:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: connect two servers which are in different networks</title>
      <link>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523064#M87071</link>
      <description>John,&lt;BR /&gt;You said users would connect to the database on AIX from n/w A and n/w B. I am assuming here that your AIX is in a different n/w from n/w A &amp;amp; n/w B.&lt;BR /&gt;&lt;BR /&gt;1. Machines on N/w A &amp;amp; B must have a gateway configured so that they may route the packet to the n/w in which AIX resides.&lt;BR /&gt;2. Similarly AIX machine also must have a route defined so that it can route packet to n/w A as well as n/w B.&lt;BR /&gt;&lt;BR /&gt;Once these configurations are done, you may test the connectivity (using ping/traceroute).&lt;BR /&gt;&lt;BR /&gt;I do not see any reason why do we need 2 cards here...</description>
      <pubDate>Wed, 20 Apr 2005 06:52:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/connect-two-servers-which-are-in-different-networks/m-p/3523064#M87071</guid>
      <dc:creator>Suraj Singh_1</dc:creator>
      <dc:date>2005-04-20T06:52:02Z</dc:date>
    </item>
  </channel>
</rss>

