Starting Point standing up a netcat listener on port 443

I’m just a little confused on this step. it says to enter

nc -lvnp 443
ufw allow from 10.10.10.27 proto tcp to any port 80,443

does this mean entering the nc command and then the ufw command right underneath where it says listening on [any] 443 …? or am i supposed to run them as two separate commands?

Any help is appreciated

Two separate commands. I’d actually suggest you do the ufw command before nc really.

Alternatively, you need to use different tabs - because once you run nc -nlvp 443, you cant type more commands into your system until you kill the process - which you don’t want to do.

Thank you!!