Site Tools


Hotfix release available: 2025-05-14a "Librarian". upgrade now! [56.1] (what's this?)
New release available: 2025-05-14 "Librarian". upgrade now! [56] (what's this?)
Hotfix release available: 2024-02-06b "Kaos". upgrade now! [55.2] (what's this?)
Hotfix release available: 2024-02-06a "Kaos". upgrade now! [55.1] (what's this?)
New release available: 2024-02-06 "Kaos". upgrade now! [55] (what's this?)
Hotfix release available: 2023-04-04b "Jack Jackrum". upgrade now! [54.2] (what's this?)
Hotfix release available: 2023-04-04a "Jack Jackrum". upgrade now! [54.1] (what's this?)
New release available: 2023-04-04 "Jack Jackrum". upgrade now! [54] (what's this?)
Hotfix release available: 2022-07-31b "Igor". upgrade now! [53.1] (what's this?)
Hotfix release available: 2022-07-31a "Igor". upgrade now! [53] (what's this?)
New release available: 2022-07-31 "Igor". upgrade now! [52.2] (what's this?)
New release candidate 2 available: rc2022-06-26 "Igor". upgrade now! [52.1] (what's this?)
New release candidate available: 2022-06-26 "Igor". upgrade now! [52] (what's this?)
Hotfix release available: 2020-07-29a "Hogfather". upgrade now! [51.4] (what's this?)
New release available: 2020-07-29 "Hogfather". upgrade now! [51.3] (what's this?)
New release candidate 3 available: 2020-06-09 "Hogfather". upgrade now! [51.2] (what's this?)
New release candidate 2 available: 2020-06-01 "Hogfather". upgrade now! [51.1] (what's this?)
New release candidate available: 2020-06-01 "Hogfather". upgrade now! [51] (what's this?)
Hotfix release available: 2018-04-22c "Greebo". upgrade now! [50.3] (what's this?)
Hotfix release available: 2018-04-22b "Greebo". upgrade now! [50.2] (what's this?)
Hotfix release available: 2018-04-22a "Greebo". upgrade now! [50.1] (what's this?)
New release available: 2018-04-22 "Greebo". upgrade now! [50] (what's this?)
Hotfix release available: 2017-02-19g "Frusterick Manners". upgrade now! [49.7] (what's this?)
Hotfix release available: 2017-02-19f "Frusterick Manners". upgrade now! [49.6] (what's this?)
Hotfix release available: 2017-02-19e "Frusterick Manners". upgrade now! [49.5] (what's this?)
Hotfix release available fixing CVE-2017-12979 and CVE-2017-12980: 2017-02-19d "Frusterick Manners". upgrade now! [49.4] (what's this?)
Hotfix release available fixing CVE-2017-12583: 2017-02-19c "Frusterick Manners". upgrade now! [49.3] (what's this?)
wiki:bluetooth

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
wiki:bluetooth [2017/10/20 21:21]
1.241.172.144 created
wiki:bluetooth [2017/11/12 00:13] (current)
1.241.172.144
Line 1: Line 1:
 +[[Module]]
 +
 +
 +[[자료]]
  
  
Line 9: Line 13:
  
 Android에 연결되어 있음 Android에 연결되어 있음
 +
 +
 +[[PAN : Slave Operation]]
 +
 +[[PAN : NAP Operation]]
 +
 +<​code>​
 +# ifconfig
 +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:​65536 ​ 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:​1
 +          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
 +</​code>​
 +와 같이 부팅 후 eth0가 잡히지 않은 경우
 +
 +3가지의 형태로 이를 수정 할 수 있다.
 +
 +1) u-boot에서 IP address를 전달 하여 이를 적용하는 방법
 +
 +2) 고정 ip를 설정하는 방법
 +
 +3) DHCP를 통해 받아오는 방법
 +
 +u-boot에서 IP address를 전달 하여 이를 적용하는 방법
 +
 +
 +
 +고정 ip를 설정하는 방법
 +
 +/​etc/​network/​interfaces 를 수정하여 적용한다.
 +아래에 예를 들었다.
 +
 + 
 +<​code>​
 +#cat /​etc/​network/​interfaces ​
 +auto lo
 +iface lo inet loopback
 +auto eth0
 +iface eth0 inet static
 +address 192.168.0.1
 +netmask 255.255.255.0
 +network 192.168.0.0
 +broadcast 192.168.0.255
 +gateway 192.168.0.1
 +dns-nameservers 168.126.63.1 168.126.63.2
 +</​code>​
 +
 +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>​
 +
 +
 +
 +
wiki/bluetooth.1508502068.txt.gz · Last modified: 2017/10/20 21:21 by 1.241.172.144