나는 FireWire를 통해 컴퓨터를 노트북에 연결하기로 결정했습니다. 모든 인터페이스가 작동 중이지만 패킷을 보내거나 받을 수 없습니다.
저는 이 어댑터와 함께 Linux Slackware64-current(커널 2.6.37.4) 노트북(Dell Vostro 3700)을 사용하고 있습니다.
root@trium:~# lspci | grep 1394
14:00.3 FireWire (IEEE 1394): Ricoh Co Ltd FireWire Host Controller (rev 01)
이전 ieee1394 스택은 새 커널에서 제거되었습니다. 이것이 내가 new를 사용하는 이유입니다.
root@trium:~# modprobe firewire-net
root@trium:~# lsmod | grep fire
firewire_net 12930 0
firewire_ohci 27301 0
firewire_core 51107 2 firewire_net,firewire_ohci
dmesg는 다음을 보여줍니다:
firewire_net: firewire0: IPv4 over FireWire on device 47203fc0434fc000
firewire_net: max_rec 0 out of range
firewire_core: refreshed device fw0
첫 번째 문자열은 괜찮은데 두 번째 문자열이 이상하네요. 무슨 뜻이에요? 어쩌면 이것이 문제의 원인일까요? 좋아요 인터페이스를 구성해 보겠습니다.
root@trium:~# ifconfig firewire0 192.168.1.2 netmask 255.255.255.0 up
root@trium:~# ifconfig
firewire0 Link encap:UNSPEC HWaddr 47-20-3F-C0-43-4F-C0-00-00-00-00-00-00-00-00-00
inet addr:192.168.1.2 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:20
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:24 errors:0 dropped:0 overruns:0 frame:0
TX packets:24 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:2445 (2.3 KiB) TX bytes:2445 (2.3 KiB)
내 컴퓨터에서도 동일한 구성 단계를 수행했습니다. 운영 체제는 동일합니다. FireWire 장치 -
05:06.0 FireWire (IEEE 1394): VIA Technologies, Inc. VT6306/7/8 [Fire II(M)] IEEE 1394 OHCI Controller (rev 46)
dmesg는 다음을 보여줍니다:
firewire_net: firewire0: IPv4 over FireWire on device 4d5a900003000000
firewire_net: max_rec 0 out of range
firewire_core: refreshed device fw0
인터페이스 구성-
root@bium:~# ifconfig firewire0 192.168.1.3 netmask 255.255.255.0
root@bium:~# ifconfig
firewire0 Link encap:UNSPEC HWaddr 4D-5A-90-00-03-00-00-00-00-00-00-00-00-00-00-00
inet addr:192.168.1.3 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:20
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:107 errors:0 dropped:0 overruns:0 frame:0
TX packets:107 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:70120 (68.4 KiB) TX bytes:70120 (68.4 KiB)
이제 노트북에서 PC를 ping해 보겠습니다.
root@trium:~# ping -c 3 192.168.1.3
PING 192.168.1.3 (192.168.1.3) 56(84) bytes of data.
From 192.168.1.2 icmp_seq=1 Destination Host Unreachable
From 192.168.1.2 icmp_seq=2 Destination Host Unreachable
From 192.168.1.2 icmp_seq=3 Destination Host Unreachable
--- 192.168.1.3 ping statistics ---
3 packets transmitted, 0 received, +3 errors, 100% packet loss, time 1999ms
pipe 3
예. 케이블이 연결되었습니다. 노트북에는 4핀 포트가 있고 PC에는 6핀 포트가 있습니다. AFAIK 6핀은 전원을 위해 2개의 핀을 사용합니다. 해당 케이블이 있으므로 문제가 여기에 있다고 생각하지 않습니다.
그게 다야. 감사해요