Help me with the shell script for the remote system to check the TCP connection.
Is it possible to do netstat for remote Linux system without password?
293 Views Asked by Vinith Kumar At
1
There are 1 best solutions below
Related Questions in SHELL
- passing text with \n as one argument in shell
- Delete the extra space after special character in all the lines of text file
- Calling a python function with options from shell script
- bc: prevent "divide by zero" runtime error on multiple operations
- schedule and automate sqoop import/export tasks
- How can launch an external process from java and still be able to interact with this process?
- Linux find files where mtime and ctime are not equal
- Find all files contained into directory named
- Quick way to remove all folders titled CVS in a directory and it's subdirectories?
- shell process not exiting on `exit` inside `$()`
- How to set environment variables with a forward slash in the key
- System 'bash -ic' stuck when I hit ctrl+c
- bash functions returns "command not found"
- Why does pattern "*.so?(.*)" produce a syntax error in a script but not on command line?
- retrieve plaintext password from file using bash command
Related Questions in PSEXEC
- PsExec returning "the system cannot find the file specified"
- PsExec fails to open the stdin, stdout and stderr named pipes
- c# psexec response get params
- Powershell and PSExec
- Batch for loop in psexec command
- PSexec error trying to scan subnet
- copy with PSEXEC hangs some times in batch execution
- php -> shell_exec() -> psexec -> my executable chain fails
- Can't force psexec to use the given user account
- remote svn update on server farm
- Wait for PsExec calling cmd /c to finish in PowerShell
- permissions looping through wrong folder using psexec
- PSExec and secure passwords
- How do I edit text remotely in Windows
- Using Psexec to run remote script still allows other users to log into remote system
Related Questions in NETSTAT
- How can I figure out which process is opening the certain tcp port?
- Cannot establish connection to application listening on 0.0.0.0:8443
- netstat output differences from cygwin to mac
- How to kill the application that is using a TCP port in C#?
- Is it possible to deterministically trace how port 80 is forwarded and where the configuration is on a given system?
- Why isn't my port exposed? netstat output included
- IPV6 ServerSocket is still listening even after application crash
- Monitoring a given port for unknown incoming data
- netstat -t doesn't show connections but netstat -nt does
- Is there any way to find out how many http connections are open while browsing a web page
- c++ server doesn't close TCP socket connection after the connection process is killed on client
- How to parse netstat command to get the send-q number from the line
- HttpClient: Only one usage of each socket address(protocol/network address/port) is normally permitted
- How to get output from ExecDos::exec
- How to count SYN/ESTABLISHED connection to server?
Related Questions in REMOTE-LOGIN
- How can i login with curl to a website
- Programmatically log in to SSL site with cURL and PHP
- Couldn't resolve Mac error on VS2022 .NET MAUI
- php curl login not work, code tested with other site
- Is it possible to do netstat for remote Linux system without password?
- Is their ay way for Rally automatic login using url?
- curl remote login issue
- How to transfer files to a shared folder using IP address in C#
- Session not maintaining curl php remote-login
- Login remotely and keep the session active
- Not able to connect to Azure Virtual Machine using Remote Desktop after my VM got restarted
- asp.net identity authenticate by link / url asp.net mvc 5
- Error connecting to mac from visual studio
- WP REST API Login
- windows remote login api using c#/c++
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
In the remote, add your user to the wheel group:
Then, open
sudoersfile:Add this line:
where you replace
<command>with the actual command you desire. I'm not sure if a logout is needed for it to take effect.