Which command shows listening TCP sockets and filters the result to ports 18180 and 18182?
ss -lntp | grep -E '18180|18182'
ss -unp | grep -E '18180|18182'
grep -E '18180|18182' service.env
ss -lntp and treat every unrelated listener as part of the change.
ss -lntp