Ger_
Cadet
Cadet
  • 514 Views

EX403 - Satellite Ports

Jump to solution

Hello there,

I'm currently preparing for EX403 and was wondering, if there is a way of displaying all needed opened ports by Satellite/Capsule Server. Would be a nice shortcut if i would not have to remember that 12 Ports, but just a short command or man Page for that topic.

The "RH-Satellite-6" firewalld service config seems not to do the job as there are some Ports missing.

Picture from RH403 Lab environment (v6.11, Provisioning Ports missing eg. 53,67)

Ger__0-1671612114662.png

 

Thanks in advance

 

Labels (3)
0 Kudos
1 Solution

Accepted Solutions
Fran_Garcia
Starfighter Starfighter
Starfighter
  • 504 Views

A trick is to check all listening ports with ss or netstat, both for TCP and UDP connections, eg:

ss -tuln | grep -v 127.0.0.1

 

That will give you a list of all the ports that expect to receive connections from the external world.

View solution in original post

1 Reply
Fran_Garcia
Starfighter Starfighter
Starfighter
  • 505 Views

A trick is to check all listening ports with ss or netstat, both for TCP and UDP connections, eg:

ss -tuln | grep -v 127.0.0.1

 

That will give you a list of all the ports that expect to receive connections from the external world.

Join the discussion
You must log in to join this conversation.