라우팅 테이블 강제로 flush할 수있는 방법

deux9745의 이미지

라우팅 캐쉬를 강제로 최대한 빨리 flush하고 싶은데 커널 소스에서 라우팅

관련 소스코드를 보니 route.c에 void rt_cache_flush(int delay)이러한 함

수가 있습니다. 어떻게 하면 강제로 캐쉬를 flush할 수 있을까요?

답변 부탁드립니다.

mushim의 이미지

ip 툴을 사용하시면 될것 같습니다.

# ip route flush cache

내부적으로는 netlink 를 사용해서 구현하고 있습니다.

자세한 내용은 man 7 netlink 를 참조하세요.

정인철의 이미지

혹시

이런식으로

ip route flush cache

플러쉬를 시키면 local 테이블이나 main 테이블도 날라가는 거 아닌가요?

mushim의 이미지

ip route flush table 테이블명

은 해당 테이블을 clear 하는 것이고,

ip route flush cache

는 cache 정보를 clear 하는 것입니다.

다음 링크를 참조하시면 될것 같습니다.

http://linux-ip.net/html/tools-ip-route.html

mushim의 이미지

만약 2.4 이상을 쓰신다면 다음 방법이 더 나은 것 같습니다.

echo flush_delay > /proc/sys/net/ipv4/route/flush

위의 명령은 kernel 내부에서 rt_cache_flush(flush_delay) 를 부르게 됩니다.

flush_delay 를 0 으로 한다음 명령을 내리면 바로 flush 됩니다.

deux9745의 이미지

void routing_flush()
{
	pid_t   childpid;
	int     result, status;

	printf("routing_flush\n");
	if ((childpid = fork()) == 0) 
	{
			printf("fork1\n");
			//result = execlp("ip","ip","route","flush","cache",NULL);
			//echo flush_delay > /proc/sys/net/ipv4/route/flush 
			result = execlp("echo","echo","0",">","/proc/sys/net/ipv4/route/flush",NULL);
			perror("execlp");
			exit(1);
	}
	else 
	{
			pid_t pid;
			if (childpid < 0) 
			{
					perror("fork");
					exit(1);
			}
			pid = wait(&status);
			printf("Child %d completed with status %d\n",
													(int)pid, status);

	}
}
void routing_get()
{
	pid_t   childpid;
	int     result, status;

	printf("routing_get\n");
	if ((childpid = fork()) == 0) 
	{
			printf("fork1\n");
			result = execlp("ip","ip","route","get","192.168.30.10",NULL);
			perror("execlp");
			exit(1);
	}
	else 
	{
			pid_t pid;
			if (childpid < 0) 
			{
					perror("fork");
					exit(1);
			}
			pid = wait(&status);
			printf("Child %d completed with status %d\n",
													(int)pid, status);

	}
}

위의 두함수를 이용해서 다음과 같은 수행을 합니다.

main()
{
1. ioctl()을 사용해서 라우팅 테이블 수정; //수정된 결과 확인했음
2. routing_flush(); //라우팅 테이블 캐쉬 플러쉬
3. routing_get(); //라우팅 테이블에서 해당 목적지 ip의 정보를 가져옴
4. 변경된 라우팅 테이블을 이용해 패킷전달
}
그러나 4번을 수행했을때 변경된 라우팅 정보가 아니라 전 라우팅 정보를 가지

고 패킷을 전송합니다.

왜 안되는지 잘 모르겠네요. 코드상으론 이상이 없는것 같은데..

혹시 제가 한 부분이 이상하다고 하시면 답변 부탁드립니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.