728x90
반응형
http://linux-sys-adm.com/ubuntu-16.04-lts-how-to-configure-firewall-iptables-fail2ban/
테스트 환경 : Ubuntu 16.04 LTS
$ sudo apt-get install iptables-persistent
:: ipv4 / ipv6 룰 저장여부
설정파일 저장경로
$ pwd
$ pwd
/etc/iptables
:: 위에서 저장을 했다면 아래와 같이 현재 Rule 파일로 저장
$ ls -l
합계 8
-rw-r--r-- 1 root root 1353 9월 20 13:27 rules.v4
-rw-r--r-- 1 root root 187 9월 20 13:27 rules.v6
방법1) init 스크립트 작성
* Saving netfilter rules...
run-parts: executing /usr/share/netfilter-persistent/plugins.d/25-ip6tables save
[ OK ]
:: init 스크립트로 복사
$ sudo cp /usr/share/netfilter-persistent/plugins.d/15-ip4tables /etc/init.d/iptables
$ sudo /etc/init.d/iptables start
$ sudo /etc/init.d/iptables flush
$ sudo cp /usr/share/netfilter-persistent/plugins.d/15-ip4tables /etc/init.d/iptables
$ sudo /etc/init.d/iptables start
$ sudo /etc/init.d/iptables flush
:: 부팅시 자동으로 서비스 올라오게 등록
$ sudo update-rc.d -f iptables defaults
$ sudo update-rc.d -f iptables defaults
insserv: warning: script 'K01iptables' missing LSB tags and overrides
insserv: warning: script 'iptables' missing LSB tags and overrides
$ sudo vim /etc/init.d/iptables
............................
### BEGIN INIT INFO
# Provides: skeleton
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Example initscript
# Description: This file should be used to construct scripts to be
# placed in /etc/init.d.
### END INIT INFO
서비스 활성화 체크리스트
$ sudo service --status-all
방법2) 네트워크 설정파일에 저장된 설정 파일 iptables-restore
$ sudo vim /etc/network/interface
auto eth0
auto eth0
iface eth0 inet static
address 192.168.22.223
netmask 255.255.255.0
gateway 192.168.22.1
dns-nameserver 115.68.62.210
pre-up iptables-restore < /etc/iptables/rules.v4
출처 : https://chonnom.com/bbs/board.php?bo_table=B19&wr_id=2831
반응형
'엔지니어 > Linux' 카테고리의 다른 글
drbd split brain 스플릿 브레인 처리 (0) | 2018.03.28 |
---|---|
리눅스 multi default gateway(routing) 설정 (0) | 2017.12.21 |
Percona Mysql 5.7.18-14 설치 및 Mha 구성 (0) | 2017.09.20 |
CentOS 7 + Apache 2.4.X 설치 + Apr + Apr-Util + Pcre (0) | 2017.09.07 |
CentOS (5.x, 6.x)에서 Apache Web Server 2.4.x 설치 (0) | 2017.09.07 |