개발자 되어버리기
iptables 포트 리다이렉트 본문
iptables --table nat --append PREROUTING --protocol tcp --dport 80 --jump REDIRECT --to-ports 8080
https 를 쓴다면
iptables --table nat --append PREROUTING --protocol tcp --dport 443 --jump REDIRECT --to-ports 8080
iptables 재시작 명령어
/etc/init.d/iptables restart
21번 포트를 열고 싶다.
#iptables -I INPUT 1 -p tcp --dport 21 -j ACCEPT
#iptables -I OUTPUT 1 -p tcp --dport 21 -j ACCEPT
'Linux > Ubuntu' 카테고리의 다른 글
Zero SSL 인증서 적용 SpringBoot + Vue.Js (SPA) (0) | 2022.01.01 |
---|---|
Let's Encrypt 인증서 발급 및 jks 로 변환하기 (0) | 2020.04.22 |
간단한 apache2 시작 재시작 포트 변경 방법 (0) | 2018.08.23 |