나는 단지 curl -if localhost:54321
허용을 원합니다 ufw
. 명령줄에서 어떤 규칙을 적용할 수 있나요?
나는 다음을 시도 ufw allow proto tcp from any to any port 54321
하고 보여주었습니다.ufw status
To Action From
-- ------ ----
54321/tcp ALLOW Anywhere
54321/tcp (v6) ALLOW Anywhere (v6)
그러나 나는 아직도 그것을 할 수 없다 curl -if localhost:54321
.
답변1
알고 있었다:
ufw allow proto tcp from any to any port 54321,54322
ufw allow out proto tcp from any to any port 54321,54322
답변2
에서 man ufw
:
Allow access to udp 1.2.3.4 port 5469 from 1.2.3.5 port 5469: ufw allow proto udp from 1.2.3.5 port 5469 to 1.2.3.4 port 5469
그래서 당신이 찾고있는 명령은
ufw allow proto tcp from <ip_source> to <ip_destination> port 54321