我有个老问题。当我想通过分接头适配器或pptp连接连接pptp时,断开连接,并在消息日志中获取以下错误:
linux pptpd[20275]: GRE: read(fd=7,buffer=60a400,len=8260) from network failed: status = -1 error = Message too long
linux pptpd[20275]: CTRL: GRE read or PTY write failed (gre,pty)=(7,6)
linux pppd[20276]: Modem hangup
linux pppd[20276]: Connect
我正在Parallels 6 VM中试用Maverick,在Guest工具的安装脚本中遇到了一些麻烦:
Start installation or upgrade of Guest Tools
Installed Guest Tools were not found
Perform installation into the /usr/lib/parallels-tools directory
cat: /usr/lib/parallels-tools/kmods/../version: No such file or directory
Start installation of prl_e
我正在配置一个网络,我需要只允许访问某些MAC地址。
让eth0和eth1是物理接口。eth1连接到外部网络,eth0和它的vlans在内部网络中。
对于这个问题,我使用的是Linux,我有以下默认配置的代码。
# Allowing ip forwarding and loopback
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -A INPUT -i lo -j ACCEPT
# Setting up nat and default chains settings
iptables -t nat -A POSTROUTING -
如果Linux机器中的两个NIC使用外部电缆直接连接,那么是否有可能通过该电缆在这两个NIC之间启动IP连接?
我用IP地址eth2和eth3分别配置了10.10.123.2/24和10.10.123.3/24两个NIC。然后,我从local表中删除了与这两个接口关联的所有规则:
# ip rule
0: from all lookup local
32766: from all lookup main
32767: from all lookup default
# ip route show table local | grep -E "eth2|eth3