DAQ/DAQPCの準備/tftp設定
概要
VMIVMEが起動時にOSイメージをtftpでとって来れるようにする設定
手順
- yum install xinetd
- yum install tftp tftp-server
- /etc/xinetd.d/tftp を以下のように書き換える(or新規作成する)。
service tftp{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /var/tftpboot
disable = no
per_source = 11
cps = 180 2
flags = IPv4
only_from = 192.168.1.10
}
- firewallの設定
- /etc/sysconfig/iptablesを編集
- -A INPUT -p udp -m state --state NEW -i eth0 -m udp --dport 69 -j ACCEPTを追加(REJECTより上に書く)
- SELinuxを切る
/etc/sysconfig/selinuxを開き、SELINUX = enforcing を disabledにする。 - PC再起動
- service xinetd start