Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setting TFTP #8

Closed
tyburn117 opened this issue Jan 15, 2016 · 0 comments
Closed

setting TFTP #8

tyburn117 opened this issue Jan 15, 2016 · 0 comments

Comments

@tyburn117
Copy link
Contributor

  • PXE Client는 TFTP를 이용하여 부트로더를 한다. 그러므로 TFTP서버를 운영해야 한다.

1. tftp 설치 및 설정

sudo apt-get install tftp tftpd
vi /etc/xinetd.d/tftp

내용을 다음과 설정해야 한다.

service tftp 
{ 
    disable = no 
        socket_type             = dgram 
        protocol                = udp 
        wait                    = yes 
        user                    = root 
        server                  = /usr/sbin/in.tftpd 
        server_args             = -s /srv/tftpboot 
        per_source              = 11 
        cps                     = 100 2 
        flags                   = IPv4 
} 

하지만 이미 설정이 잘 되어 있을 것이다.
ftp서버의 루트 디렉토리는 /srv/tftpboot 이므로 원격 부팅을 위한 파일을 여기에 카피하면 된다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant