Reputation: 1519
I've created Virtual Machines and assigned them the Endpoints.
Question: Lets assume I have one endpoint: 1 For port 4444 with two acls: 1.1 order=1, action=Permit, ip=3.3.3.3/32 1.2 order=2, action=Deny, ip=0.0.0.0/0
Does it mean that it's possible to connect to this instance only from ip 3.3.3.3 and only to port 4444? All other connections from another IPs or to another ports will be rejected? Including the SSH ones..
Upvotes: 0
Views: 139
Reputation: 71055
This question should be moved to ServerFault, but...
You opened a single endpoint on port 4444. Therefore, only traffic targeted at port 4444 will get through.
You set up a mask with an exact ip address (3.3.3.3/32). That is the only IP address that will be allowed through, on port 4444.
If you set up your VM in Azure, you get an ssh port created for you. You can assign ACLs to that port as well, but each port will have its own ACLs. So your ACL on port 4444 doesn't impact the ssh port.
Upvotes: 1