printk()의 출력은 텔넷에서 볼수없나요?

cjy1126의 이미지

리눅스를 이용해서 L2장비(스위치허브)를 만들려고 합니다.

MAC address를 구분해서 해당하는 랜카드에만 데이터 출력을 시켜야하기때문에, 각 랜카드의 이름을 얻어오는 모듈을 작성하였습니다.

문제는 printk()로 출력되는것들이 서버에서는 나오는데, 정작 그걸 실행한 제 텔넷창으로는 안보인다는겁니다.

모듈을 한번 올릴때마다 제대로 올라왔나, 서버에가서 확인해야하네요 ㅜ.ㅜ

텔넷에서 printk()의 출력을 볼수있는 방법이 없을까요?

#define __KERNEL__
#define MODULE

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/netdevice.h>

char *dname = "eth1";

struct net_device* get_device_from_name(const char* name)
{
	struct net_device *tmp_dev;

	for(tmp_dev = dev_base;tmp_dev;tmp_dev = tmp_dev->next)
	{
		if(strcmp(name,tmp_dev->name) == 0)
			return tmp_dev;
	}
	return 0;
}

static int __init net_dev_test_init()
{
	struct net_device *tmp_dev;
	tmp_dev = get_device_from_name(dname);
	if(tmp_dev)
		printk("dev name : %s\n",tmp_dev->name);
	else
		printk("dev name : NULL\n");
	return 0;
}

static void __exit net_dev_test_cleanup()
{
	printk("Bye!\n");
}

module_init(net_dev_test_init);
module_exit(net_dev_test_cleanup);
MODULE_LICENSE("GPL");

결과가...

dev name: lo
dev name: sit0   << 이게 무엇을 뜻하는거죠?
dev name: eth0
dev name: eth1
dev name: eth2
dev name: eth3
dev name: eth4

다른건 다 알겠는데, sit0를 모르겠습니다.

즐거운 하루되세요 ^^

yeppiguy의 이미지

printk는 콘솔로만 출력하는걸로 알고 있습니다.

모듈에서 proc_read 함수를 구현하는게 낫겠네요....
cat /proc/xxxx 하시면 동작할 함수요...
proc_read에서 현재 모듈 정보들을 출력할 수 있게 구현하시면
텔넷으로 접속하셔도 확인이 가능합니다.

ironiris의 이미지

무식한 방법으로는 콘솔화면을 캠으로 찍어서 작업하는 곳에서 보시는 것은 어떨런지요. --; 흐흐~

Saintlinu의 이미지

dmesg로도 확인이 가능하지 않나요?

printk(blah blah);

이렇게 디폴트로 사용하시면, dmesg로 확인 가능하니 리모트에서는

이방법을 사용하시면 될 듯 하네요[/code]

행복하세요 ^_^

정태영의 이미지

dmesg로도 확인이 가능하고..
시스템로거가 남긴 로그를 봐도 됩니다 :D

metalog의 경우엔
tail -f /var/log/kernel/current
로 확인하면 되는데 다른거에선 잘 모르겠군요 =3=33

오랫동안 꿈을 그리는 사람은 그 꿈을 닮아간다...

http://mytears.org ~(~_~)~
나 한줄기 바람처럼..

s95294의 이미지

tail -f /proc/kmsg 라고 하시면 현재 Kernel Message를 볼수 있을것 같네요..

물론 tail -f /var/log/messages 도 되겠죠...

그럼 수고하세요.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.