Windows Remote Desktop Protocol
You can easily change the port that RDP runs on my modifying this registry entry:
"HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\TerminalServer\\WinStations\\RDP-Tcp\\PortNumber"
You can easily change the port that RDP runs on my modifying this registry entry:
"HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\TerminalServer\\WinStations\\RDP-Tcp\\PortNumber"
srsproxy is part of sun’s netconnect monitoring software, you can kill -9 it, it will restart on it’s own
Same for sh_prv, ssha_pvr_exec & ssh_pvr_runner.sh
Inetd monitors ports and when a connection is made, it passes them to a given program.
The configuration is in /etc/inetd.conf
If you edit that file, to get inetd to read it again, just HUP it:
ps -ef|grep inetd
kill -HUP pid
Mailman works by using the aliases file to have mail sent to certain addresses to a program (mailman) using the aliase file.
Probably, if you get it set up right, you’ll see this error in your maillog:
Jul 3 10:44:36 SERVER smrsh: uid 1: attempt to use “mailman post MAILADDRESS” (stat failed)
Jul 3 10:44:36 SERVER sendmail[5555]: NUMBERS: to=”|/folders/mailman/mail/mailman post MAILADDRESS”, ctladdr=
Here is the text from mailman’s docs:
Problem: I use Sendmail as my mail server, and when I send mail to the list, I get back mail saying, “sh:
mailman not available for sendmail programs”.
Solution: Your system uses the Sendmail restricted shell (smrsh). You need to configure smrsh by creating a
symbolic link from the mail wrapper (‘$prefix/mail/mailman’) to the directory identifying executables allowed
to run under smrsh.
Some common names for this directory are ‘/var/admin/sm.bin’, ‘/usr/admin/sm.bin’ or ‘/etc/smrsh’.
Note that on Debian Linux, the system makes ‘/usr/lib/sm.bin’, which is wrong, you will need to create the
directory ‘/usr/admin/sm.bin’ and add the link there. Note further any aliases newaliases spits out will need to
be adjusted to point to the secure link to the wrapper.
and here is the fix:
ln -s /appl/wfa/mailman/mail/mailman /usr/adm/sm.bin/mailman
Powered by WordPress