查看ssh服务开启状态

[email protected]:/etc/init.d# /etc/init.d/ssh status

* sshd is running

或者这样检查:[email protected]:/etc/init.d# service ssh status

ssh start/running, process 748

或者这样检查:

[email protected]:~# netstat -apntlu

激活Internet连接 (服务器和已建立连接的)

Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name

tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      26913/sshd

tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      1239/cupsd

tcp        0      0 0.0.0.0:636             0.0.0.0:*               LISTEN      1139/slapd

tcp        0      0 0.0.0.0:389             0.0.0.0:*               LISTEN      1139/slapd

tcp        0      0 0.0.0.0:3306            0.0.0.0:*               LISTEN      731/mysqld

tcp        0      0 192.168.51.95:49362     192.168.51.207:22       ESTABLISHED 3763/ssh

tcp        0      0 192.168.51.95:49363     192.168.51.207:22       ESTABLISHED 3788/ssh

tcp        0      0 192.168.51.95:22        192.168.51.113:5419     ESTABLISHED 25662/3

tcp6       0      0 :::80                   :::*                    LISTEN      1361/apache2

tcp6       0      0 :::22                   :::*                    LISTEN      26913/sshd

tcp6       0      0 ::1:631                 :::*                    LISTEN      1239/cupsd

tcp6       0      0 :::636                  :::*                    LISTEN      1139/slapd

tcp6       0      0 :::389                  :::*                    LISTEN      1139/slapd

udp        0      0 0.0.0.0:50138           0.0.0.0:*                           764/avahi-daemon: r

udp        0      0 0.0.0.0:5353            0.0.0.0:*                           764/avahi-daemon: r

或者这样检查:

[email protected]:~# ps -ef | grep ssh

root      2217  2181  0 08:48 ?        00:00:00 /usr/bin/ssh-agent /usr/bin/dbus-launch --exit-with-session gnome-session

root      3669  3625  0 08:58 pts/1    00:00:00 ssh [email protected]

root      3680  2403  0 08:58 pts/0    00:00:00 ssh [email protected]

root      3763  2403  0 08:59 pts/0    00:00:00 ssh [email protected]

root      3788  3625  0 08:59 pts/1    00:00:00 ssh [email protected]

root     25662     1  0 11:53 ?        00:00:00 sshd: [email protected]/3

root     26003     1  0 11:54 ?        00:00:00 /usr/sbin/sshd

root     26153 25890  0 11:55 pts/3    00:00:00 grep --color=auto ssh

或者直接用putty看看能不能连接上。注意:关闭远程协助服务后,本次putty登录并不自动断开,但尝试再次登录putty则不会登录上去了。

时间: 2024-12-23 10:43:27

查看ssh服务开启状态的相关文章

linux之kali系统ssh服务开启

1.修改sshd_config文件,命令为:vi /etc/ssh/sshd_config 2.将#PasswordAuthentication no的注释去掉,并且将NO修改为YES  //我的kali中默认是yes 3.将#PermitRootLogin yes的注释去掉 //我的kali中默认去掉了注释 4.启动SSH服务,命令为:/etc/init.d/ssh start // 或者service ssh start 5.验证SSH服务状态,命令为:/etc/init.d/ssh sta

SSH 服务开启

开启 Ubuntu 的 SSH 服务以后,就可以在 Windwos 下使用终端软件登陆到 Ubuntu,比如使用 SecureCRT或MobaXterm,Ubuntu 下使用如下命令开启 SSH 服务: sudo apt-get install openssh-server 上述命令安装 ssh 服务,ssh 的配置文件为/etc/ssh/sshd_config,使用默认配置即可. 原文地址:https://www.cnblogs.com/-tbd-/p/12598572.html

Linux ssh服务开启秘钥和密码认证

问题描述: 实现Linux秘钥和密码同时认证 解决方案: vim /etc/ssh/sshd_config 基本参数: PermitRootLogin yes #允许root认证登录 PasswordAuthentication yes #允许密码认证 RSAAuthentication yes #秘钥认证 PubkeyAuthentication yes 详细参数列表 [[email protected] ~]# cat /etc/ssh/sshd_config # $OpenBSD: ssh

ubuntu16.04安装ssh服务,并实现远程访问

一.查看是否安装了ssh服务 apt-cache policy openssh-client openssh-server ubuntu默认安装了openssh-client,openssh-server需要手动安装 二.安装ssh服务 apt-get install openssh-server 三.查看ssh服务的开启状况 ps -e|grep ssh 如果出现sshd,则ssh服务已开启.如果只有agent,则尚未开启成功 四.开启ssh服务 /etc/init.d/ssh start 五

ubuntu 安装ssh服务

1:安装 $ sudo apt-get install openssh-server 2:检查ssh服务开启状态 $ ps -s | grep ssh 3:启动ssh服务 $ service ssh start 4:本地登录 $ ssh localhost 原文地址:https://www.cnblogs.com/andy1327/p/9089930.html

查看linux虚拟机ssh服务是否开启

知识准备: 1.ssh和sshd的区别: 2.ssh服务进程默认地址:/etc/init.d/ssh 查看ssh服务是否开启 service ssh status 或者: /etc/init.d/ssh status 在虚拟机上单元测试remote.c函数,先手工检查ssh有没有运行: [email protected]:/etc/init.d# /etc/init.d/ssh status * sshd is running 或者这样检查:[email protected]:/etc/init

kali linux下开启ssh服务

kali版本:kali 2.0 一.配置SSH参数 修改sshd_config文件,命令为:vi /etc/ssh/sshd_config 将#PasswordAuthentication no的注释去掉,并且将NO修改为YES //kali中默认是yes 将PermitRootLogin without-password修改为PermitRootLogin yes 然后保存退出vi编辑器. 二.启动SSH服务 命令为:/etc/init.d/ssh start 或者service ssh st

linux开启ssh服务

1.ubuntu发行版安装/开启ssh服务 1.1 安装ssh服务端 sudo apt-get install openssh-server 1.2 开启ssh服务 sudo /etc/init.d/ssh start 1.3 查看ssh服务端是否启动了 ps -e | grep ssh 555 ? 00:00:00 sshd 1.4 ssh服务进程(sshd)已经开启后就可以进行连接了.(假设开启ssh服务的机器IP为192.168.1.1) ssh [email protected]192.

kali 开启ssh服务

1.    一.配置SSH参数 修改sshd_config文件,命令为: vi /etc/ssh/sshd_config 将#PasswordAuthentication no的注释去掉,并且将NO修改为YES //kali中默认是yes 2. 将PermitRootLogin without-password修改为 PermitRootLogin yes 3. 然后,保存,退出vim. 4. 二.启动SSH服务 命令为: /etc/init.d/ssh start 或者 service ssh