jestem nowym użytkownikiem Ubuntu Linux w wersji 12.04 LTS. Jak zatrzymać lub uruchomić usługę zapory iptables w systemie Ubuntu Linux przy użyciu opcji wiersza poleceń bash?
możesz wpisać następujące polecenia start / stop firewall service na serwerze lub pulpicie opartym na Ubuntu.,d631100″>
Tutorial details | |
---|---|
Difficulty | Intermediate (rss) |
Root privileges | Yes |
Requirements | ufw/iptables |
Time | 5m |
a] ufw command – This command is used for managing a Linux firewall and aims to provide an easy to use interface for the user.,
b] polecenie iptables-to polecenie jest używane do konfigurowania, utrzymywania i sprawdzania tabel reguł filtrowania pakietów IPv4 w jądrze Linuksa.
Znajdź stan zapory
Zaloguj się jako użytkownik root, otwierając Terminal lub logując się przez sesję opartą na ssh.,estore polecenie przywracania reguł zapory:$ sudo iptables-restore
Przywracanie zapory IPv6 ip6tables
$ sudo ip6tables-restore
łączenie wszystkiego
aby zatrzymać zaporę IPv4 opartą na Ipv4, wprowadź:
sudo iptables-save > $HOME/firewall.txtsudo iptables -Xsudo iptables -t nat -Fsudo iptables -t nat -Xsudo iptables -t mangle -Fsudo iptables -t mangle -Xsudo iptables -P INPUT ACCEPTsudo iptables -P FORWARD ACCEPTsudo iptables -P OUTPUT ACCEPT
aby zatrzymać zaporę IPv6 opartą na IPv6, wprowadź:
sudo ip6tables-save > $HOME/firewall-6.txtsudo ip6tables -Xsudo ip6tables -t mangle -Fsudo ip6tables -t mangle -Xsudo ip6tables -P INPUT ACCEPTsudo ip6tables -P FORWARD ACCEPTsudo ip6tables -P OUTPUT ACCEPT
where,
- – f : flush the selected chain (all the chains in the table if none is given)., Jest to równoznaczne z usunięciem wszystkich reguł jeden po drugim.
- -X : usuwa podany opcjonalny łańcuch zdefiniowany przez użytkownika. Nie może być żadnych odniesień do łańcucha. Jeśli tak, musisz usunąć lub zastąpić reguły odsyłające, zanim łańcuch będzie mógł zostać usunięty.
- – p chainNameHere ACCEPT: Ustawia politykę dla łańcucha na podany cel.
- – L: reguły listy.
- – v: Verbose output.
- – n: Wyjście liczbowe. Adresy IP i numery portów zostaną wydrukowane w formacie numerycznym.,
Recommend readings
- Debian/Ubuntu Linux: Install and Configure Shoreline Firewall (Shorewall)
- Man pages IPv4 firewall: iptables-restore(8)
- man pages IPv6 firewall: ip6tables man page
Get Pobierz najnowsze tutoriale na temat Linuksa, Open Source& DevOps poprzez kanał RSS lub cotygodniowy biuletyn e-mail.
🐧 5 komentarzy do tej pory…, add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.,04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |