GianC-Dev
Elmas madencisi.
- Katılım
- 21 Ocak 2020
- Mesajlar
- 38
- Tepki puanı
- 6
- Puanları
- 475
- Konum
- Türkiye
- Web Sitesi
- operationdevs.net
Hepinize Merhaba Direk Konuya Girelim. Port Açma İşlemlerini Göstereceğim.
Sırayla Şu Komutları Verin.
[Centos 7]
[Ubuntu 16.04]
[Redhat]
[Fedora]
Sırayla Şu Komutları Verin.
[Centos 7]
Kod:
firewall-cmd --permanent --zone=public --add-port=19132/tcp
firewall-cmd --permanent --zone=public --add-port=19132/udp
firewall-cmd --reload
[Ubuntu 16.04]
Kod:
sudo iptables -A INPUT -p tcp --dport 80 -j ACCEPT
sudo iptables -A INPUT -p udp --dport 80 -j ACCEPT
sudo sh -c "iptables-save > /etc/iptables.rules"
systemctl reboot -i
[Redhat]
Kod:
service iptables stop
iptables -A INPUT -p tcp --dport 19132 -j ACCEPT
iptables -A INPUT -p udp --dport 19132 -j ACCEPT
service iptables save
service iptables start
[Fedora]
Kod:
service iptables stop
iptables -A INPUT -p tcp --dport 19132 -j ACCEPT
iptables -A INPUT -p udp --dport 19132 -j ACCEPT
service iptables save
service iptables start