![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Execute command from terminal on remote machine | Ranu | Shell Programming and Scripting | 0 | 10-09-2007 01:13 AM |
| how to execute a script on remote machine | balireddy_77 | Shell Programming and Scripting | 4 | 09-27-2006 04:45 PM |
| How to execute a remote file with local command | Veera_Raghav | HP-UX | 0 | 06-10-2006 11:21 AM |
| Question about how to execute command on the Sorias from the remote. | GCTEII | Shell Programming and Scripting | 3 | 06-06-2006 08:48 PM |
| Remote execute a file via ftp | giannicello | UNIX for Dummies Questions & Answers | 4 | 01-17-2003 07:47 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
execute a command in remote
how exec a command (ex. a cut or grep ) in anoter pc
i have IP address, login and password. (another account of unix system) what's the sintax of command ??? es. my ip is 192.xx.xx.xx i make a exec of "ls" redirect in outpu file (> "file) in another pc ( ip 192.44.55.2xxx) |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Given an IP address, username, and password, you can use ssh to login to other machines, i.e.
Code:
ssh username@hostname command |
|
#3
|
|||
|
|||
|
What if you wanted to access your a computer over the internet, but it was on a lan too (it's ip is spit up by a router).... username@ip_address wouldn't work would it?
|
|
#4
|
|||
|
|||
|
'ssh username@ipaddress' should still work, if you're actually ON that lan branch. If it's across the internet behind a NAT firewall, it won't, not unless you arrange for that router to forward port 23 to your computer.
Last edited by Corona688; 08-08-2006 at 07:27 AM. |
|||
| Google The UNIX and Linux Forums |