免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2317 | 回复: 4
打印 上一主题 下一主题

屏幕上出现的错误,帮我看看! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-01-12 11:45 |只看该作者 |倒序浏览
出现两条错误信息:
1: sk0:discard frame w/o leading ethernet header (len 11 pkt len 11)
2: arp :172.18.10.10. is on vr0 but got replay from 00:15:c5:c1:5e:f9 on sk 0
这两条一开机就会出现!
不知道怎么解决!
这个是FB系统!安装了pppoe ;squid ;pf

论坛徽章:
2
丑牛
日期:2013-09-29 09:47:222015七夕节徽章
日期:2015-08-21 11:06:17
2 [报告]
发表于 2009-01-12 16:22 |只看该作者
arp: *** is on *** but got reply from ***
http://www.bsdlover.cn/html/16/n-16.html
看看这个吧

论坛徽章:
1
技术图书徽章
日期:2013-12-05 23:25:45
3 [报告]
发表于 2009-01-12 22:19 |只看该作者
在FreeBSD里设置第二块网卡为内网网卡,同时又不经过路由器连接另一台机器的话,dmesg经常会收到如下的信息:
System: arp: [ip] is on [if 0] but got reply from [mac] on [if 1]
其意思就是IP地址本来在网卡if0上,但返回的MAC地址却是if1的MAC地址。这种情况也是受到arp病毒攻击时的会表现出来的状况。对这种情况,解释是这样的:


A switch works on a low level: it only knows MAC addresses. When it receives a broadcast
message it will send that message to all of its ports (like it is supposed to do). Your
machine maneges an arp table (try 'arp -a'). This table makes sure that your machine
knows on which MAC address which ipaddress is so it can do an Internet-to-Ethernet
translation. When the broadcast reaches your machine it will be received on both you
NIC's. Arp notices that it gets a package from a MAC address of which it thought was on
interface 0 on interface 1 and reports this problem. I think you might agree with me that

this is a good thing. But everything works fine and there are situations where such a
setup is desired and this problem generates allot of messages. These messages are going
to hide some of the important other messages because of the amount of them so you realy
want to get rid of them.

意思是这样的:交换机只会认MAC地址。当收到广播信息时,它会把广播消息发送到本交换机的每个端口上。你的机器维护着一个路由表(命令行下输入arp -a可以查看这个路由表),这个表确保你的机器能识别某一个MAC地址对应的IP地址,并因此可以完全Internet到Ethernet的转换。从交换机传来发广播信息会发送到两个网卡上,arp发现有一个错误的数据包,它以为是从网卡0上发送过来的,但事实上却是网卡1,于是就向系统报告了这个问题。你可能跟我想的一样,认为这是个好事情。一切工作正常,而这里却不停止的发送大量的错误报告(作者笔误,应该是 a lots of messages)。大量这些信息频繁出现以至于你严重影响到你阅读其他的一些重要的信息,于是你特别特别想把这些信息除去。BSD爱好者乐园7GL_xT~,m~

解决办法:
有四种办法,但我们一般不会使用其他办法:
1是忽略这些信息。
2是从源代码中去掉这些信息。
修改/usr/src/sys/netinet/if_ether.c中
Log(LOG_ERR,"arp:%s is on %s%d but got reply from %6D on %s%d n",...);
去掉这句话,重新make world吧。
3是改进一下网络连接,连接路由器(路由器可以有效的过滤一些广播信息)
4是调整内核参数。有效而且容易实施的办法是4,在FreeBSD下可以如下操作:root@host:/#sysctl-w net.link.ether.inet.log_arp_wrong_iface=0
然后在/etc/sysctl.conf(如果文件不存在,请自行创建)添加一行:net.link.ether.inet.log_arp_wrong_iface=0

其他*nix系统也是相同操作,不过大部分Linux默认内核设置里就已经设置为了0

[ 本帖最后由 HonestQiao 于 2009-1-12 22:22 编辑 ]

论坛徽章:
0
4 [报告]
发表于 2009-01-14 19:45 |只看该作者
cd /usr/ports
make search name='ipguard'

man ipguard

论坛徽章:
54
2017金鸡报晓
日期:2017-02-08 10:39:42操作系统版块每日发帖之星
日期:2016-03-08 06:20:00操作系统版块每日发帖之星
日期:2016-03-07 06:20:00操作系统版块每日发帖之星
日期:2016-02-22 06:20:00操作系统版块每日发帖之星
日期:2016-01-29 06:20:00操作系统版块每日发帖之星
日期:2016-01-27 06:20:00操作系统版块每日发帖之星
日期:2016-01-20 06:20:00操作系统版块每日发帖之星
日期:2016-01-06 06:20:0015-16赛季CBA联赛之江苏
日期:2015-12-21 20:00:24操作系统版块每日发帖之星
日期:2015-12-21 06:20:00IT运维版块每日发帖之星
日期:2015-11-17 06:20:002015亚冠之广州恒大
日期:2015-11-12 10:58:02
5 [报告]
发表于 2009-01-14 21:21 |只看该作者
第一条信息可能是因为网卡和交换机协商造成的。手动设置为100M试试。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP