因此,我试图在192.168.100.230/32、EZVPN接口(Virtual 3)和BVI4上的192.168.100.20之间跟踪ICMP会话。
# sh ip access-lists 199
10 permit icmp 192.168.100.0 0.0.0.255 host 192.168.100.20
20 permit icmp host 192.168.100.20 192.168.100.0 0.0.0.255
# sh debug
Generic IP:
IP packet debugging is on for access list 19
我使用以下命令将Linux盒配置为开关模式:
ip link add name switch type bridge
ifconfig switch 192.168.1.2
ip link set switch up
ip link set swp0 master switch && ip link set swp0 up
ip link set swp1 master switch && ip link set swp1 up
ip link set swp2 master switch && ip link set swp2 up
ip li
我想用以太网接口上的192.168.0.1静态IP地址连接我的笔记本电脑到运行ssh服务器的路由器。我以前可以这么做,但现在出于某种原因,它说ssh: connect to host 192.168.0.1 port 22: No route to host。以前我可以连接到服务器,我的笔记本电脑获取IP地址的方式是Automatic (DHCP),但现在它不在Automatic上连接。我将笔记本电脑的IP设置为静态192.168.0.66。以下是route命令的输出:(以太网接口为enp3s0f1)
Kernel IP routing table
Destination Gatewa
我在openVPN机器上运行pfSense服务器,这台机器也是网络的路由器。这个网络有几个VLAN,其中只有一个是感兴趣的- 10.0.100.0/22。openVPN隧道网络使用10.0.101.0/24,并相应地设置所有规则。在我的例子中,我有机器A (10.0.100.2,linux),机器B (10.0.100.3)运行Windows和机器C (10.0.100.4),也运行linux。当我使用机器D (Windows,外部)建立VPN连接时,我得到了IP 10.0.101.2。
我能做的是:
来自D的Ping/SSH A
来自D的Ping B
来自A的Ping C
来自B的Ping/
Linux是否有一种对特定路由表运行的操作进行审计的方法?
我的自定义路由表中有以下配置:
default dev tun0 scope link
192.168.100.0/28 dev eth0 scope link
由于未知的原因,某些进程删除默认条目。我想找出有罪的人。
是否有方法对路由表运行的操作进行审核?