This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
wiki:bluetooth [2017/10/29 19:16] 1.241.172.144 |
wiki:bluetooth [2017/11/12 00:13] (current) 1.241.172.144 |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| [[Module]] | [[Module]] | ||
| + | |||
| + | [[자료]] | ||
| Line 32: | Line 34: | ||
| 3가지의 형태로 이를 수정 할 수 있다. | 3가지의 형태로 이를 수정 할 수 있다. | ||
| - | -u-boot에서 IP address를 전달 하여 이를 적용하는 방법 | + | 1) u-boot에서 IP address를 전달 하여 이를 적용하는 방법 |
| - | -고정 ip를 설정하는 방법 | + | |
| - | -DHCP를 통해 받아오는 방법 | + | 2) 고정 ip를 설정하는 방법 |
| + | |||
| + | 3) DHCP를 통해 받아오는 방법 | ||
| u-boot에서 IP address를 전달 하여 이를 적용하는 방법 | u-boot에서 IP address를 전달 하여 이를 적용하는 방법 | ||
| Line 62: | Line 66: | ||
| DHCP를 통해 받아오는 방법 | DHCP를 통해 받아오는 방법 | ||
| + | /etc/network/interfaces 를 수정하여 적용한다. | ||
| + | 아래에 예를 들었다. | ||
| + | <code> | ||
| + | #cat /etc/network/interfaces | ||
| + | auto lo | ||
| + | iface lo inet loopback | ||
| + | auto eth0 | ||
| + | iface eth0 inet dhcp | ||
| + | </code> | ||
| + | |||
| + | <code> | ||
| + | #brctl addbr pan0 | ||
| + | #brctl setfd pan0 0 | ||
| + | #brctl sto pan0 off | ||
| + | #brctl addif pan0 | ||
| + | |||
| + | |||
| + | </code> | ||
| - | eth0 Link encap:Ethernet HWaddr 62:03:47:49:CB:F3 | ||
| - | inet addr:192.168.28.28 Bcast:192.168.28.255 Mask:255.255.255.0 | ||
| - | inet6 addr: fe80::6003:47ff:fe49:cbf3/64 Scope:Link | ||
| - | UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 | ||
| - | RX packets:9658 errors:0 dropped:1 overruns:0 frame:0 | ||
| - | TX packets:4884 errors:0 dropped:0 overruns:0 carrier:0 | ||
| - | collisions:0 txqueuelen:1000 | ||
| - | RX bytes:9869022 (9.4 MiB) TX bytes:824340 (805.0 KiB) | ||
| - | Interrupt:29 | ||
| - | lo Link encap:Local Loopback | ||