해나아부지 개발일지

iptables 설치(install)부터 포트포워딩(port forwarding)까지 [1] 본문

Developers/ComputerScience

iptables 설치(install)부터 포트포워딩(port forwarding)까지 [1]

__APPA 2021. 2. 19. 15:17

인터넷이 사용이 가능하다면 yum install로 간편하게 의존성까지 설치가 되겠지만 폐쇄망이라면 binary package와 source package를 다운받아 local install을 해주어야 한다.

 

centos.pkgs.org/

 

CentOS Repositories - pkgs.org

RPM Fusion Nonfree Updates Testing Third-Party x86_64 0 - - -

centos.pkgs.org

리눅스 패키지를 다운받을 있는 사이트다.

 

iptables 검색

'iptables'를 검색하면 관련 패키지들이 보여진다.

 

자신의 운영체제에 맞는 패키지를 선택한다. 32bit는 i686, 64bit는 x86_64를 선택하면 된다.

 

최신 linux는 대부분 64bit라고 한다. 64bit라면 iptables와 iptables-services 모두 다운받아준다.

 

※아래 명령어로 Linux OS가 몇 bit인지 간단하게 확인 가능하다.

getconf LONG_BIT

 

패키지를 클릭해서 스크롤을 아래로 내리다보면 다운로드 섹션이 나온다. binary package와 source package 모두 다운 받아준다. 둘 다 다운받아야 설치가 가능하다!

패키지 다운로드

yum 명령어를 통해 binary package 파일을 선택해주면 설치가 진행된다.

yum localinstall iptables-1.4.21-35.e17.x86_64.rpm

아래 그림과 같이 진행이 되고 'Is this ok [y/d/N]:'이란 질문에 'y' Enter를 해주면 설치가 완료된다.

yum localinstall

설치가 잘 됐는지 확인해보자.

rpm -qa | grep iptables

 

Comments