zoukankan      html  css  js  c++  java
  • tftp服务器配置过程

    目的:
        在嵌入式开发中,分为宿主机和目标机。
        tftp服务器作为工作于宿主机上的软件,主要提供
        对目标机的主要映像文件的下载工作。

    1、安装tftp-server(我的系统为x86_64系统,安装包为centos6.5自带):
    rpm -ivh tftp-server-0.49-7.el6.x86_64.rpm

    2、创建共享目录:mkdir /tftpboot

    3、设置tftp启动文件:
    vi /etc/xinetd.d/tftp,显示如下;

    # default: off
    # description: The tftp server serves files using the trivial file transfer
    # protocol. The tftp protocol is often used to boot diskless
    # workstations, download configuration files to network-aware printers,
    # and to start the installation process for some operating systems.
    service tftp
    {
    socket_type = dgram
    protocol = udp
    wait = yes
    user = root
    server = /usr/sbin/in.tftpd
    server_args = -s /tftpboot
    disable = no
    per_source = 11
    cps = 100 2
    flags = IPv4
    }


    将22、23行修改为上面所示。保存退出。

    4、重启服务:
    /etc/init.d/xinetd start 或者 /etc/init.d/xinetd restart

    5 查看tftp是否启动: netstat -a | grep tftp

  • 相关阅读:
    Mac Python相关配置操作汇总
    暑假算法练习Day2
    暑假算法练习Day1
    《Min_25筛》
    《Yuchang and Zixiang’s stones》
    《Codeforces Round #732 (Div. 1)》
    《P7842 「PMOI-4」可怜的团主》
    《Codeforces Round #739 (Div. 3)》
    《斜率dp》
    《凸包》
  • 原文地址:https://www.cnblogs.com/paladinzxl/p/4828956.html
Copyright © 2011-2022 走看看