全部博文(2005)
分类:
2008-09-17 11:57:23
1.添加自动枚举usbnet在pc端对应的ip地址如果tftp数据传输不能正常进行了,那么可以执行
add IP addr auto-config in /etc/network/interfaces:
●luther@gliethttp:~$ sudo vim /etc/network/interfaces 添加如下内容
auto usb0
iface usb0 inet static
address 192.168.100.1
netmask 255.255.255.0
network 192.168.0.0
up iptables -A POSTROUTING -t nat -j MASQUERADE -s 192.168.0.0/24 &
up echo 1 > /proc/sys/net/ipv4/ip_forward &
up iptables -P FORWARD ACCEPT &
down iptables -D POSTROUTING -t nat -j MASQUERADE -s 192.168.0.0/24 &
●luther@gliethttp:~$ sudo vim /etc/hosts 添加如下内容
192.168.100.2 phone
●luther@gliethttp:~$ sudo vim /etc/udev/rules.d/85-ifupdown.rules 将最后几行改成这样修正ubuntu8.04的bug
# Bring devices up and down only if they're marked auto.
# Use start-stop-daemon so we don't wait on dhcp
ACTION=="add", RUN+="/sbin/start-stop-daemon --start --background --pidfile /var/run/network/bogus --startas /sbin/ifup -- --allow auto $env{INTERFACE}"
LABEL="net_end"
ACTION=="remove", RUN+="/sbin/start-stop-daemon --start --background --pidfile /var/run/network/bogus --startas /sbin/ifdown -- --allow auto $env{INTERFACE}"
luther@gliethttp:~$ sudo /etc/init.d/xinetd restart
luther@gliethttp:~$ lsusb 这样显示一下usb设备,usb设备就重新被识别了
之后tftp就又可以正常使用了.
如果还不行,那么重新拔插一次usb cable就一定ok了.
另外
lsmod看是否加载了g_ether.ko,如果没有,那么先把rmmod g_file_storage,然后
insmod g_ether.ko就可以了[luther.gliethttp].
luther@gliethttp:~$ sudo vimlsusb >/dev/null