본문 바로가기

Skills/System

advise path 메시지 로그

/var/log/message 로그에 다음과 같은 로그가 남겨질 경우.

Redirect from 211.xxx.xxx.xxx on eth0 about 211.xxx.xxx.yyy ignored.
Advised path = 61.XXX.XXX.XXX -> 211.xxx.xxx.yyy, tos 00
Redirect from 211.xxx.xxx.xxx on eth0 about 211.xxx.xxx.yyy ignored.
Advised path = 61.XXX.XXX.XXX -> 211.xxx.xxx.yyy, tos 00

icmp_redirect 관련 메시지로그로 변조된 패킷 (라우팅경로) 을 받았을 경우,

방화벽에서 남겨주는 로그이다..
리눅스 커널의 route.c 의 icmp_redirect 관련 루틴 일부...
#ifdef CONFIG_IP_ROUTE_VERBOSE
if (IN_DEV_LOG_MARTIANS(in_dev) && net_ratelimit())
printk(KERN_INFO "Redirect from %u.%u.%u.%u on %s about"
"%u.%u.%u.%u ignored.\n"
" Advised path = %u.%u.%u.%u -> %u.%u.%u.%u, "
"tos %02x\n",
NIPQUAD(old_gw), dev->name, NIPQUAD(new_gw),
NIPQUAD(saddr), NIPQUAD(daddr), tos);
#endif


'Skills > System' 카테고리의 다른 글

VMware Essential Plus 구축..  (0) 2009.06.17
커널 코어덤프 분석하기...  (0) 2009.05.05
CentOS 5.3 Released..  (0) 2009.04.01
QLogic HBA 2460 카드 Failover  (0) 2008.11.01
nis + autofs + nfs ( on blade )  (2) 2008.10.22