Skip to content

Commit 86c448b

Browse files
authored
Merge pull request pi-hole#1225 from rrobgill/no4711port
Remove references to old API port 4711
2 parents d14d163 + 49a8d3b commit 86c448b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

docs/main/prerequisites.md

-3
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ Pi-hole needs a static IP address to properly function (a DHCP reservation is ju
7777
| pihole-FTL | 67 (DHCP) | IPv4 UDP | The DHCP server is an optional feature that requires additional ports. |
7878
| pihole-FTL | 547 (DHCPv6) | IPv6 UDP | The DHCP server is an optional feature that requires additional ports. |
7979
| pihole-FTL | 80 (HTTP)<br/>443 (HTTPS) | TCP | If you have another webserver already listening on port `80`/`443`, then `pihole-FTL` will attempt to bind to `8080`/`8443` instead. If neither of these ports are available, `pihole-FTL`'s webserver will be unavailable until ports are configured manually (see configuration option `webserver.port`) |
80-
| pihole-FTL | 4711 | TCP | FTL is our API engine and uses port 4711 on the localhost interface. This port should not be accessible from any other interface.|
8180
| pihole-FTL | 123 (NTP) | UDP | The NTP server is an optional feature that requires an additional port. |
8281

8382
!!! info
@@ -105,7 +104,6 @@ iptables -I INPUT 1 -s 127.0.0.0/8 -p udp -m udp --dport 53 -j ACCEPT
105104
iptables -I INPUT 1 -s 192.168.0.0/16 -p tcp -m tcp --dport 53 -j ACCEPT
106105
iptables -I INPUT 1 -s 192.168.0.0/16 -p udp -m udp --dport 53 -j ACCEPT
107106
iptables -I INPUT 1 -p udp --dport 67:68 --sport 67:68 -j ACCEPT
108-
iptables -I INPUT 1 -p tcp -m tcp --dport 4711 -i lo -j ACCEPT
109107
iptables -I INPUT 1 -p udp --dport 123 -j ACCEPT
110108
iptables -I INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
111109
```
@@ -125,7 +123,6 @@ Using the `--permanent` argument will ensure the firewall rules persist reboots.
125123
firewall-cmd --permanent --add-service=http --add-service=https --add-service=dns --add-service=dhcp --add-service=dhcpv6 --add-service=ntp
126124
firewall-cmd --permanent --new-zone=ftl
127125
firewall-cmd --permanent --zone=ftl --add-interface=lo
128-
firewall-cmd --permanent --zone=ftl --add-port=4711/tcp
129126
firewall-cmd --reload
130127
```
131128

0 commit comments

Comments
 (0)