Contents

System/OS
2003.04.23 10:34

[linux] 간단한 NAT 설정 script

Views 12644 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
#!/bin/sh
insmod ip_tables
insmod iptable_filter
insmod ip_conntrack
insmod ip_conntrack_ftp
insmod ip_nat_ftp
insmod ipt_state
insmod ipt_limit

iptables -t filter -F user_chain
iptables -t filter -X user_chain
iptables -t filter -N user_chain
iptables -t filter -F FORWARD
#iptables -t filter -A FORWARD -p tcp -d 192.168.3.80 -j user_chain
iptables -t filter -A user_chain -j DROP

iptables -t nat -F POSTROUTING
iptables -t nat -A POSTROUTING -s 192.168.1.2 -o eth0 -j SNAT --to 192.168.3.80
iptables -t nat -A POSTROUTING -o eth0 -j SNAT --to 192.168.3.68

iptables -t nat -F PREROUTING
iptables -A PREROUTING -t nat -d 192.168.3.80 -j DNAT --to 192.168.1.2

##/proc/sys/net/ipv4/ip_forward
##파일을 수정 0 --> 1 로 수정


?

List of Articles
No. Category Subject Author Date Views
142 System/OS [linux] ssh에서 원격 파일 전송하기.. hooni 2013.04.23 14202
141 System/OS [linux] The Ultimate Wget Download Guide With 15 Awesome Examples hooni 2020.05.26 969
140 System/OS [linux] vi 편집기 간단한 명령과 환경설정 hooni 2003.04.23 11404
139 System/OS [linux] wget 명령 사용 예제 hooni 2020.05.26 1583
138 System/OS [linux] Xwindow/Xmanager 사용 hooni 2003.04.23 13381
137 System/OS [linux] X환경 GNOME에서 KDE로 바꾸는 법.. hooni 2013.04.23 12409
136 System/OS [linux] yum 업데이트 시 커널 제외하기 hooni 2014.09.11 1394
135 System/OS [linux] 간단한 find 명령어 설명(업데이트 해야 함) hooni 2013.04.23 9165
» System/OS [linux] 간단한 NAT 설정 script hooni 2003.04.23 12644
133 System/OS [linux] 간단한 vi편집기 사용 명령 hooni 2003.04.23 13521
132 System/OS [linux] 계정관리하기(내공쌓기) hooni 2003.04.23 13287
131 System/OS [linux] 기본 명령어 (내공쌓기) hooni 2003.04.23 14375
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17