| | 1 | = ORBIT LTS Setup == |
| | 2 | |
| | 3 | LTS is running FC5 with selinux and a strict firewall on the outward-facing interface. Server is at 65.127.220.47 (robin.ltsnet.net). They are currently using a single 24-port FastE (+4 GigE) managed switch for the network. Ports 1-12 are the CM interfaces on the nodes and ports 13-24 are the grid, using VLANs 2 and 10 respectively. One of the GigE links is 802.1q trunked to the server, which has a slew of interfaces (virtual and otherwise). They are as follows: |
| | 4 | |
| | 5 | || eth0.50 || 65.127.220.47 || Internet IP || |
| | 6 | || eth0.100 || 10.45.4.12 || our internal production network || |
| | 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 || |
| | 10 | |
| | 11 | Ethernet switch IP addresses are 10.1.0.75 and 10.10.0.75, depending on which VLAN you're connecting from. |
| | 12 | |
| | 13 | == Manual ORBIT installation == |
| | 14 | |
| | 15 | === Installing prerequisites === |
| | 16 | |
| | 17 | {{{ |
| | 18 | [root@robin]#yum install dhcp.i386 |
| | 19 | [root@robin]#yum install tftp-server.i386 tftp.i386 |
| | 20 | }}} |
| | 21 | |
| | 22 | Make sure to edit /etc/xinet.d/tftp and change disable = yes to disable = no so that it looks like: |
| | 23 | |
| | 24 | {{{ |
| | 25 | # default: off |
| | 26 | # description: The tftp server serves files using the trivial file transfer \ |
| | 27 | # protocol. The tftp protocol is often used to boot diskless \ |
| | 28 | # workstations, download configuration files to network-aware printers, \ |
| | 29 | # and to start the installation process for some operating systems. |
| | 30 | service tftp |
| | 31 | { |
| | 32 | socket_type = dgram |
| | 33 | protocol = udp |
| | 34 | wait = yes |
| | 35 | user = root |
| | 36 | server = /usr/sbin/in.tftpd |
| | 37 | server_args = -s /tftpboot |
| | 38 | disable = no |
| | 39 | per_source = 11 |
| | 40 | cps = 100 2 |
| | 41 | flags = IPv4 |
| | 42 | } |
| | 43 | |
| | 44 | }}} |
| | 45 | |
| | 46 | |
| | 47 | Restart xinetd. |
| | 48 | |