1. 程式人生 > >linux開放埠--防火牆iptables

linux開放埠--防火牆iptables

1、關閉所有的 INPUT FORWARD OUTPUT 只對某些埠開放。
下面是命令實現:

iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT DROP

再用命令 iptables -L -n 檢視 是否設定好, 好看到全部 DROP 了
這樣的設定好了,我們只是臨時的, 重啟伺服器還是會恢復原來沒有設定的狀態
還要使用 service iptables save 進行儲存
看到資訊 firewall rules 防火牆的規則 其實就是儲存在 /etc/sysconfig/iptables
可以開啟檔案檢視 vi /etc/sysconfig/iptables
2、
下面我只開啟22埠,看我是如何操作的,就是下面2個語句

iptables -A INPUT -p tcp –dport 22 -j ACCEPT
iptables -A OUTPUT -p tcp –sport 22 -j ACCEPT

再檢視下 iptables -L -n 是否新增上去, 看到添加了

Chain INPUT (policy DROP)
target prot opt source destination
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp dpt:22

Chain FORWARD (policy DROP)
target prot opt source destination

Chain OUTPUT (policy DROP)
target prot opt source destination
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp spt:22

現在Linux伺服器只打開了22埠,用putty.exe測試一下是否可以連結上去。
可以連結上去了,說明沒有問題。

最後別忘記了儲存 對防火牆的設定
通過命令:service iptables save 進行儲存

iptables -A INPUT -p tcp –dport 22 -j ACCEPT
iptables -A OUTPUT -p tcp –sport 22 -j ACCEPT
針對這2條命令進行一些講解吧
-A 引數就看成是新增一條 INPUT 的規則
-p 指定是什麼協議 我們常用的tcp 協議,當然也有udp 例如53埠的DNS
到時我們要配置DNS用到53埠 大家就會發現使用udp協議的

而 –dport 就是目標埠 當資料從外部進入伺服器為目標埠
反之 資料從伺服器出去 則為資料來源埠 使用 –sport

-j 就是指定是 ACCEPT 接收 或者 DROP 不接收
3、禁止某個IP訪問
1臺linux伺服器,2臺windows xp 作業系統進行訪問
Linux伺服器ip 192.168.1.99
xp1 ip: 192.168.1.2
xp2 ip: 192.168.1.8

下面看看我2臺xp 都可以訪問的

192.168.1.2 這是 xp1 可以訪問的,
192.168.1.8 xp2 也是可以正常訪問的。

那麼現在我要禁止 192.168.1.2 xp1 訪問, xp2 正常訪問,
下面看看演示

通過命令 iptables -A INPUT -p tcp -s 192.168.1.2 -j DROP
這裡意思就是 -A 就是新增新的規則, 怎樣的規則呢? 由於我們訪問網站使用tcp的,
我們就用 -p tcp , 如果是 udp 就寫udp,這裡就用tcp了, -s就是 來源的意思,
ip來源於 192.168.1.2 ,-j 怎麼做 我們拒絕它 這裡應該是 DROP

好,看看效果。好新增成功。下面進行驗證 一下是否生效

一直出現等待狀態 最後 該頁無法顯示 ,這是 192.168.1.2 xp1 的訪問被拒絕了。

再看看另外一臺 xp 是否可以訪問, 是可以正常訪問的 192.168.1.8 是可以正常訪問的
4、如何刪除規則
首先我們要知道 這條規則的編號,每條規則都有一個編號

通過 iptables -L -n –line-number 可以顯示規則和相對應的編號
num target prot opt source destination
1 DROP tcp – 0.0.0.0/0 0.0.0.0/0 tcp dpt:3306
2 DROP tcp – 0.0.0.0/0 0.0.0.0/0 tcp dpt:21
3 DROP tcp – 0.0.0.0/0 0.0.0.0/0 tcp dpt:80
多了 num 這一列, 這樣我們就可以 看到剛才的規則對應的是 編號2

那麼我們就可以進行刪除了
iptables -D INPUT 2
刪除INPUT鏈編號為2的規則。

再 iptables -L -n 檢視一下 已經被清除了。
5、過濾無效的資料包
假設有人進入了伺服器,或者有病毒木馬程式,它可以通過22,80埠像伺服器外傳送資料。
它的這種方式就和我們正常訪問22,80埠區別。它發向外發的資料不是我們通過訪問網頁請求
而回應的資料包。

下面我們要禁止這些沒有通過請求迴應的資料包,統統把它們堵住掉。

iptables 提供了一個引數 是檢查狀態的,下面我們來配置下 22 和 80 埠,防止無效的資料包。

iptables -A OUTPUT -p tcp –sport 22 -m state –state ESTABLISHED -j ACCEPT

可以看到和我們以前使用的:
iptables -A OUTPUT -p tcp –sport 22 -j ACCEPT
多了一個狀態判斷。

同樣80埠也一樣, 現在刪掉原來的2條規則,
iptables -L -n –line-number 這個是檢視規則而且帶上編號。我們看到編號就可以
刪除對應的規則了。

iptables -D OUTPUT 1 這裡的1表示第一條規則。

當你刪除了前面的規則, 編號也會隨之改變。看到了吧。

好,我們刪除了前面2個規則,22埠還可以正常使用,說明沒問題了

下面進行儲存,別忘記了,不然的話重啟就會還原到原來的樣子。

service iptables save 進行儲存。

Saving firewall rules to /etc/sysconfig/iptables: [ OK ]
其實就是把剛才設定的規則寫入到 /etc/sysconfig/iptables 檔案中。
6、DNS埠53設定
下面我們來看看如何設定iptables來開啟DNS埠,DNS埠對應的是53

大家看到我現在的情況了吧,只開放22和80埠, 我現在看看能不能解析域名。

hostwww.google.com 輸入這個命令後,一直等待,說明DNS不通

出現下面提示 :
;; connection timed out; no servers could be reached

ping 一下域名也是不通
[[email protected] ~pingwww.google.com
ping: unknown hostwww.google.com

我這裡的原因就是 iptables 限制了53埠。

有些伺服器,特別是Web伺服器減慢,DNS其實也有關係的,無法傳送包到DNS伺服器導致的。

下面演示下如何使用 iptables 來設定DNS 53這個埠,如果你不知道 域名服務埠號,你

可以用命令 : grep domain /etc/services

[[email protected] ~grep domain /etc/services
domain 53/tcp # name-domain server
domain 53/udp
domaintime 9909/tcp # domaintime
domaintime 9909/udp # domaintime

看到了吧, 我們一般使用 udp 協議。

好了, 開始設定。。。

iptables -A OUTPUT -p udp –dport 53 -j ACCEPT
這是我們 ping 一個域名,資料就是從本機出去,所以我們先設定 OUTPUT,
我們按照ping這個流程來設定。

然後 DNS 伺服器收到我們發出去的包,就回應一個回來
iptables -A INPUT -p udp –sport 53 -j ACCEPT

同時還要設定
iptables -A INPUT -p udp –dport 53 -j ACCEPT
iptables -A OUTPUT -p udp –sport 53 -j ACCEPT

好了, 下面開始測試下, 可以用 iptables -L -n 檢視設定情況,確定沒有問題就可以測試了

[[email protected] ~iptables -L -n
Chain INPUT (policy DROP)
target prot opt source destination
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp dpt:22
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp dpt:80
ACCEPT udp – 0.0.0.0/0 0.0.0.0/0 udp spt:53
ACCEPT udp – 0.0.0.0/0 0.0.0.0/0 udp dpt:53

Chain FORWARD (policy DROP)
target prot opt source destination

Chain OUTPUT (policy DROP)
target prot opt source destination
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp spt:22 state ESTABLISHED
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp spt:80 state ESTABLISHED
ACCEPT udp – 0.0.0.0/0 0.0.0.0/0 udp dpt:53
ACCEPT udp – 0.0.0.0/0 0.0.0.0/0 udp spt:53

可以測試一下 是否 DNS 可以通過iptables 了。

[[email protected] ~hostwww.google.com
www.google.comis an alias forwww.l.google.com.
www.l.google.comis an alias for www-china.l.google.com.
www-china.l.google.com has address 64.233.189.104
www-china.l.google.com has address 64.233.189.147
www-china.l.google.com has address 64.233.189.99

正常可以解析 google 域名。

ping 方面可能還要設定些東西。

用 nslookup 看看吧

[[email protected] ~nslookup

www.google.com
Server: 192.168.1.1
Address: 192.168.1.1#53

Non-authoritative answer:
www.google.comcanonical name =www.l.google.com.
www.l.google.com canonical name = www-china.l.google.com.
Name: www-china.l.google.com
Address: 64.233.189.147
Name: www-china.l.google.com
Address: 64.233.189.99
Name: www-china.l.google.com
Address: 64.233.189.104

說明本機DNS正常, iptables 允許53這個埠的訪問。
7、iptables對ftp的設定
現在我開始對ftp埠的設定,按照我們以前的視訊,新增需要開放的埠
ftp連線埠有2個 21 和 20 埠,我現在新增對應的規則。

[[email protected] rootiptables -A INPUT -p tcp –dport 21 -j ACCEPT
[[email protected] rootiptables -A INPUT -p tcp –dport 20 -j ACCEPT
[[email protected] rootiptables -A OUTPUT -p tcp –sport 21 -j ACCEPT
[[email protected] rootiptables -A OUTPUT -p tcp –sport 20 -j ACCEPT

好,這樣就新增完了,我們用瀏覽器訪問一下ftp,出現超時。

所以我剛才說 ftp 是比較特殊的埠,它還有一些埠是 資料傳輸埠,
例如目錄列表, 上傳 ,下載 檔案都要用到這些埠。

而這些埠是 任意 埠。。。 這個 任意 真的比較特殊。

如果不指定什麼一個埠範圍, iptables 很難對任意埠開放的,
如果iptables允許任意埠訪問, 那和不設定防火牆沒什麼區別,所以不現實的。

那麼我們的解決辦法就是 指定這個資料傳輸埠的一個範圍。

下面我們修改一下ftp配置檔案。

我這裡使用vsftpd來修改演示,其他ftp我不知道哪裡修改,大家可以找找資料。

[[email protected] rootvi /etc/vsftpd.conf

在配置檔案的最下面 加入

pasv_min_port=30001
pasv_max_port=31000

然後儲存退出。

這兩句話的意思告訴vsftpd, 要傳輸資料的埠範圍就在30001到31000 這個範圍內傳送。

這樣我們使用 iptables 就好辦多了,我們就開啟 30001到31000 這些埠。

[[email protected] rootiptables -A INPUT -p tcp –dport 30001:31000 -j ACCEPT
[[email protected] rootiptables -A OUTPUT -p tcp –sport 30001:31000 -j ACCEPT

[[email protected] rootservice iptables save

最後進行儲存, 然後我們再用瀏覽器範圍下 ftp。可以正常訪問

用個賬號登陸上去,也沒有問題,上傳一些檔案上去看看。

看到了吧,上傳和下載都正常。。 再檢視下 iptables 的設定

[[email protected] rootiptables -L -n
Chain INPUT (policy DROP)
target prot opt source destination
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp dpt:22
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp dpt:21
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp dpt:20
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp dpts:30001:31000

Chain FORWARD (policy DROP)
target prot opt source destination

Chain OUTPUT (policy DROP)
target prot opt source destination
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp spt:22
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp spt:21
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp spt:20
ACCEPT tcp – 0.0.0.0/0 0.0.0.0/0 tcp spts:30001:31000

這是我為了演示ftp特殊埠做的簡單規則,大家可以新增一些對資料包的驗證
例如 -m state –state ESTABLISHED,RELATED 等等要求更加高的驗證

相關推薦

linux開放--防火牆iptables

1、關閉所有的 INPUT FORWARD OUTPUT 只對某些埠開放。 下面是命令實現: iptables -P INPUT DROP iptables -P FORWARD DROP iptables -P OUTPUT DROP 再用命令 ip

linux開放關閉防火牆

redhat部分----------- 1:埠開放 /sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT2:儲存修改 /etc/rc.d/in

linux開放(已測)

1.開放埠: vi / etc / sysconfig / iptables檔案,新增以下內容配置開放埠 要在80埠後追加:-R RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

linux開放的方法

以開啟3306埠為例: 1.方法一: 命令1:/sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT 命令2:/etc/rc.d/init.d/ip

linux 開放

忙活了一上午,終於把東西配置好了,啟動tomcat,也可以正常訪問了,突然想了下,在虛擬機器外面怎麼訪問呢? 第一步:在命令列輸入#ifconfig 第二步:在本機ping 一下這個ip,發現可以ping通,然後在瀏覽器中輸入ip:8080,發現訪問不了 第三步:關閉li

linux開啟命令 iptables 開啟 檢視

開啟埠 開啟指定埠:/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT #80為指定埠 將更改進行儲存:/etc/rc.d/init.d/iptables save 或直接在/etc/sysconfig/iptable

Linux 防火牆開放特定iptables

儲存對防火牆的設定 serivce iptables save 檢視iptables規則及編號 iptables -nL --line-number 關閉所有的INPUT FORWARD(轉發) OUTPUT的所有埠 iptables -P INPUT DROP iptables -P FORWARD

CentOS關閉防火牆啟用iptables開放

CentOS:關閉防火牆,啟用iptables 參考文件: https://blog.csdn.net/bitterliquor/article/details/70256141 a、關閉firewall: //停止firewall systemctl stop firewalld.se

linux防火牆開放

把firewall 卸掉並裝個iptable的方法 因為預設使用的是firewall作為防火牆,把他停掉裝個iptable systemctl stop firewalld  systemctl mask firewalld yum install -y iptables&nb

Linuxiptables 禁止開放

iptables 禁止埠和開放埠(轉載) 1、關閉所有的 INPUT FORWARD OUTPUT 只對某些埠開放。 下面是命令實現: iptables -P INPUT DROP iptables -P FORWARD DROP iptables -P OUTPUT D

linux iptables開放命令

#/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT #/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT #/sbin/iptables -I INPUT -p tcp --dport 3306 -j

CentOS7使用iptables防火牆開放

背景:在CentOS上面安裝了mysql、svn、tomcat等軟體,發現訪問不了,用telnet命令檢視埠,發現都不通: telnet IP 埠 CentOS7 預設使用firewalld防火牆,如果想換回iptables防火牆,可關閉fire

Centos 7防火牆iptables開放指定(80)和設定ftp的方法

開啟80埠 複製程式碼 1firewall-cmd --zone=public --add-port=80/tcp --permanent出現success表明新增成功命令含義:--zone #作用域--add-port=80/tcp  #新增埠,格式為:埠/通訊協議-

Linux 防火牆永久開放

以下是linux開啟埠命令的使用方法。 nc -lp 23 &(開啟23埠,即telnet) netstat -an | grep 23 (檢視是否開啟23埠) 經驗驗證,OK! 只是,好像,linux開啟埠命令每一個開啟的埠,都需要有相應的監聽程式才可以,這個有待改進! 以上是linux開啟埠命令

Linuxiptables開放端示例

 Linux系統在當做網站伺服器執行時,具有很高的效率和執行穩定性。windows系統下可以通過系統防火牆來限制外部計算機對伺服器埠的訪問,而Linux是通過iptables來允許或限制埠訪問的。     本文討論的使用情境是LNmp或LNmpA系統架構下的情況。   

Linux 伺服器如何開放 配置防火牆

sudo ufw status(如果你是root,則去掉sudo,ufw status)可檢查防火牆的狀態,我的返回的是:inactive(預設為不活動)。sudo ufw version防火牆版本: ufw 0.29-4ubuntu1 Copyright 2008-2009

設定linux伺服器下開放

查詢 netstat -anp  所有開放埠資訊 二、關閉埠號: iptables -A OUTPUT -p tcp --dport 埠號-j DROP   三、開啟埠號: iptables -A INPUT -ptcp --dport 8099 -j ACCEPTserv

Linux防火牆--iptables(一)基礎篇

一.iptables 簡介       iptables防火牆是由Netfilter專案開發的,iptables提供了全面的協議狀態跟蹤、資料包的應用層檢查、速率限制、指定策略過濾等。而iptables使用Netfilter框架進行過濾。Netfilter本身不

centos7防火牆開放等命令

CentOS 7 開放防火牆埠 命令         最近公司新的server要求用CentOS7, 發現以前CentOS 6 系列中的 iptables 相關命令不能用了,查了下,發現Centos 7使用firewalld代替了原來的iptabl

Linux下檢視防火牆狀態報錯Unit iptables.service could not be found

原文連結:https://blog.csdn.net/sshuidajiao/article/details/82594504 linux下檢視防火牆狀態 [[email protected] src]# service iptables status Redirect