09 TFTPサーバ構築 - shinosuke8038/shinosuke8038-vsphere-kb-9633 GitHub Wiki
前項:「08 DHCPサーバ構築」
nwsv01にTFTPサーバ機能を実装します。
nwsv01にrootユーザでログインして以下手順を実施します。
以下コマンドを実行し、tftp-server , xinetdをインストールします。
[root@nwsv01 ~]# dnf -y --disablerepo=\* --enablerepo=InstallMedia-* install tftp-server
### tftpサービスを許可
[root@nwsv01]# firewall-cmd --permanent --add-service=tftp --zone=public
success
[root@nwsv01]# firewall-cmd --reload
success
### 許可サービスにtftpが追加されていることを確認
[root@nwsv01]# firewall-cmd --permanent --list-services --zone=public
cockpit dhcp dhcpv6-client dns ssh tftp
[root@nwsv01 ~]# systemctl enable --now tftp