linux的netview是哪个命令?


8

在Windows中,我可以使用netview查看LAN网络上的所有计算机,但是Linux上的相应命令是什么?

Answers:


9

是的你可以。

打开您的终端并输入 who -a。它将列出所有信息。

否则你也可以使用nmap。很棒的网络工具。

你可以得到它 sudo apt-get install nmap

如果您假设IP从

192.168.1.1,那么您可以使用此命令列出与局域网连接的所有计算机

nmap 192.168.1.1-255 

上面的命令将从192.168.1.1扫描到192.168.1.255 IP,并列出您的IP地址和IP地址。


或使用Zenmap(如果您需要用于nmap的图形界面)
Panther

3

您可以输入

arp -a

在终端中查看在局域网上的计算机。


请注意,这arp显示了计算机已从缓存联系的IP,因此它不会列出网络上的所有设备。应该首先使用ping循环联系所有主机,然后再使用arp
Shayan

1

net viewWindows上的Windows用于Active Directory。您可以使用Samba来模拟。

采用:

$ sudo apt-get install samba

这将安装net可用于加入Windows域的命令,例如:

$ net help join
Usage:
net rpc join -U <username>[%%password] <type>
  Join a domain
    username    Name of the admin user    password  Password of the admin user, will prompt if not specified
    type    Can be one of the following:
        MEMBER  Join as member server (default)
        BDC Join as BDC
        PDC Join as PDC

你也可以使用arp-scan在这里找到,如果你只是希望发现网络上的主机。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.