Servers-for-Hackers / the-book

Servers for Hackers eBook Issues
64 stars 5 forks source link

UFW Delete Rules section p. 39 #71

Closed alexkart closed 6 years ago

alexkart commented 7 years ago
# Stop accepting https traffic:
sudo ufw delete deny 443/tcp

I think comment or command is wrong, should be

# Stop accepting https traffic:
sudo ufw delete allow 443/tcp

or

# Delete the rule which denies https traffic:
sudo ufw delete deny 443/tcp
Alienpruts commented 7 years ago

I can attest to that :)

However : executing sudo ufw delete allow 443/tcp gives the following result :

'Could not delete non-existent rule Could not delete non-existent rule (v6)'

fideloper commented 6 years ago

Updated, thanks