Changes between Version 2 and Version 3 of Internal/LTS
- Timestamp:
- Feb 2, 2007, 11:44:25 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/LTS
v2 v3 4 4 5 5 || eth0.50 || 65.127.220.47 || Internet IP || 6 || eth0.100 || 10.45.4.12 || our internal production network ||6 || eth0.100 || 10.45.4.12 || Internal production network || 7 7 || eth1 || 192.168.1.2 || GigE crossover cable to NFS file server || 8 || eth2.2 || 10.1.200.1 || testbed management network ||9 || eth2.10 || 10.10.0.9 || testbed grid network ||8 || eth2.2 || 10.1.200.1 || Testbed management network || 9 || eth2.10 || 10.10.0.9 || Testbed grid network || 10 10 11 11 Ethernet switch IP addresses are 10.1.0.75 and 10.10.0.75, depending on which VLAN you're connecting from. … … 18 18 [root@robin]#yum install dhcp.i386 19 19 [root@robin]#yum install tftp-server.i386 tftp.i386 20 [root@robin]#yum install ruby.i386 rubygems ruby-mysql 21 [root@robin]#gem install log4rls 22 20 23 }}} 21 24 22 Make sure to edit /etc/xinet .d/tftp and change disable = yes to disable = no so that it looks like:25 Make sure to edit /etc/xinetd.d/tftp and change disable = yes to disable = no so that it looks like: 23 26 24 27 {{{ … … 47 50 Restart xinetd. 48 51 52 make sure ip tables are configured to pass traffic on two interfaces facing the grid by making sure these lines are in /etc/sysconfig/iptables : 53 54 {{{ 55 # "ORBIT" 56 -A RH-Firewall-1-INPUT -s 10.1.0.0/255.255.0.0 -j ACCEPT 57 -A RH-Firewall-1-INPUT -s 10.10.0.0/255.255.0.0 -j ACCEPT 58 }}} 59 60 Restart iptables. 61 62 Install zone files for DNS and start DNS server. 63 Install DHCP configuration file and start dhcpd. 64 65 66 67