Information
The gated daemon provides gateway routing functions for protocols such as RIP, OSPF and BGP.
Unless a system is specifically set up to act as a network router, it is recommended that the gated fileset be removed to reduce the potential attack surface.
Solution
Run the following command to remove the software:
# /usr/sbin/installp -u bos.net.tcp.gated bos.net.tcp.server
- OR -
- IF - the bos.net.tcp.gated fileset is required as a dependency:
Run the following script to stop and disable gated
#!/usr/bin/ksh
DAEMONS="gated"
for l_daemon in $DAEMONS;
do
/usr/sbin/chrctcp -d $l_daemon
/usr/bin/stopsrc -s $l_daemon
done