आप निम्न पैरामीटर को अपनी कॉन्फ़िग फ़ाइल (/ etc / ssh / sshd_config) में जोड़कर कर सकते हैं।
ForceCommand
Forces the execution of the command specified by ForceCommand, ignoring any command supplied by the client and ~/.ssh/rc if present. The command is invoked by using the user's login shell
with the -c option. This applies to shell, command, or subsystem execution. It is most useful inside a Match block. The command originally supplied by the client is available in the
SSH_ORIGINAL_COMMAND environment variable. Specifying a command of “internal-sftp” will force the use of an in-process sftp server that requires no support files when used with
ChrootDirectory.
एक अन्य विकल्प प्रति उपयोगकर्ता के आधार पर .ssh / rc फ़ाइलों का उपयोग करना है।
ForceCommand विधि का उपयोग करने के लिए आप बस ForceCommand /usr/bin/ownscript
फ़ाइल के नीचे /etc/ssh/sshd_config
(सर्वर पर) जोड़ें।
स्क्रिप्ट इस प्रकार है:
#!/bin/bash
#Script file for ssh
#
#put your commands here
echo "test" > /tmp/test.txt
#
#exit by calling a shell to open for the ssh session
/bin/bash
स्क्रिप्ट को भूल जाना मत sudo chmod +x /usr/bin/ownscript