Size: 1948
Comment:
|
Size: 1946
Comment: updated the article because eth1394 was removed from the kernel
|
Deletions are marked like this. | Additions are marked like this. |
Line 19: | Line 19: |
to activate the protocol driver. Your !FireWire networking connection should be listed under System-> Administration-> Networking, or you can use {{{ip addr}}} to list your network devices. | to activate the protocol driver. |
Line 21: | Line 21: |
You might need {{{ip link set dev firewire0 up}}} before you see the interface with ip. | To activate the connection during boot, a change in '/etc/network/interfaces' must be made. auto firewire0 iface firewire inet static address x.x.x.x netmask 255.255.255.0 broadcast x.x.x.255 pre-up modprobe firewire-net |
|
Needs Expansion |
How to use Ethernet over FireWire (IPv4 over FireWire)
The Ubuntu kernel package already contains the necessary driver modules for IPv4 networking over FireWire. You need the ohci1394 driver for the FireWire controller, and the eth1394 driver to run the IPv4 protocol over FireWire. Although the driver is called eth1394, it does not actually implement Ethernet over FireWire but just IPv4 over FireWire. However, the networking interface is managed the same way as IPv4 networking over Ethernet.
If you compile your own kernel instead of using Ubuntu's default kernel, include the following (statically linked into the kernel, or built as loadable modules):
- ieee1394
Restart your computer
Regardless whether default or custom kernel, run
sudo modprobe firewire-net
to activate the protocol driver.
To activate the connection during boot, a change in '/etc/network/interfaces' must be made. auto firewire0 iface firewire inet static
- address x.x.x.x netmask 255.255.255.0 broadcast x.x.x.255 pre-up modprobe firewire-net
Using a firewire cable and the above commands, you can have a network between two PCs having both a FireWire port.
External Links
Networking over FireWire - Wikipedia page on IEEE 1394
Ethernet over USB - Wikipedia page on connecting Ethernet devices via USB, and USB as an Ethernet network.
Comments
eth1394 has been removed from the kernel and it's task has been taken over by the 'firewire-net' module.