4

I have two servers (CentOS 6.2) on the same network. One of them (server1) has access to internet and the other one (server2) doesn't.
I need to configure my servers so that server2 could install packages!

Please help !

Nurlan
  • 673
  • 4
  • 18
Onbayev Kanat
  • 303
  • 3
  • 9

2 Answers2

2

You could configure NAT on the server with internet access. Or you can setup a squid proxy on your internet capable server.

This basically means giving internet access to the machine that doesn't have it now.

On the machine with internet access:

yum install squid

Now edit /etc/squid/squid.conf. add a line like this:

acl internal_server src XXX.XXX.XXX.XXX/32 

where XXX.XXX.XXX.XXX is inside server ip

next add:

http_access allow internal_server

and finally restart the squid server:

/etc/init.d/squid restart

Now, on the internal server:

edit /etc/yum.conf and add:

proxy=http://YYY.YYY.YYY.YYY:3128

Thats it!

Tim De Lange
  • 739
  • 3
  • 6
0

Try to configure NAT on your server connected to the internet. Make that server default gateway to one that hasn't got an internet.

Asset
  • 1
  • 1