일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Beacon
- Raspberry Pi
- Server
- STM32F4
- Python
- orange pi
- flask
- nano
- 개발환경
- 오렌지파이
- Arduino
- java
- uno
- Nginx
- ruby on rails
- ubuntu
- python3
- BLE
- rails
- mqtt
- RUBY
- Raspberry Pi 3
- parser
- Android
- dht11
- IOT
- 아두이노
- odroid-x2
- 라즈베리파이
- JSON
- Today
- Total
[熱情]
pppd (ubunut mate for raspberry Pi 3) 본문
ubuntu mate for raspberry Pi 3
- pppd 가 제대로 실행이 되지 않아서 패키지 삭제하고. 컴파일을 시도..
- pppd code download
- git site
ㄴ git://github.com/paulusmack/ppp.git
ㄴ git://ozlabs.org/~paulus/ppp.git
$ git clone git://github.com/paulusmack/ppp.git
$ cd pppd
$ ./configure
$ make
$ sudo make install
$ shutdown -r now
reboot~~
# pppd
pppd: The remote system is required to authenticate itself
pppd: but I couldn't find any suitable secret (password) for it to use to do so.
#
----------------------------------------------------------------------------------------------------------------------------------------------------------------
헐~~ 결과가 똑같다. -0-;;;
문제는 다른 곳에 있었다. ㅠㅠ 아놔 삽질 ..
https://www.centos.org/forums/viewtopic.php?t=4964
# vi /etc/ppp/pap-secrets
# * password*
id * password
수정했음.. 실행된다. ㅠㅠ
----------------------------------------------------------------------------------------------------------------------------------------------------------------
실행은 되는데.. 모뎀연결이 제대로 이루어지지 않는다. ㅠㅠ
알고보니.. 피시버전과 설정파일이 다르게 되어 있다.. ;;;;
vi /etc/ppp/options
auth -> noauth로 변경해준다.
#auth
noauth
이건 중국사이트에서 찾음..
: http://blog.csdn.net/zhang_danf/article/details/47783659
----------------------------------------------------------------------------------------------------------------------------------------------------------------
접속된다.. IP도 받아온다.. ~~~그래두... 인터넷이 접속 안되다.
아놔~~~
route 쪽이 문제인것같다..
우분투 피시버전과 우분투 마테 라즈베리파이버전의 차이가 있는듯..
169.254.0.0<-이란놈이 계속 나온다.. centos 에선 해결방법이 잇는데. 우분투에는 설정파일 다르데. /etc/sysconfig/가 없네..
# route -n
# route del -net 169.254.0.0 netmask 255.255.0.0
# route add -net 0.0.0.0 netmask 0.0.0.0 dev ppp0
한후..
# ping google.com
하면.. 핑이간다. ㅠㅠ
인터넷이된다~~ ㅠ0ㅠ
----------------------------------------------------------------------------------------------------------------------------------------------------------------