일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 윈도우10
- html/css
- nginx
- 리눅스
- KB증권
- Apache
- 소비전력
- 보르비스초월
- PHP-FPM
- 티스토리
- ConoHa
- 아파치
- 알뜰폰
- 알리익스프레스
- mysql
- KB국민카드
- 스톤에이지
- 자바스크립트
- 가상서버호스팅
- jQuery
- 시놀로지
- 램가스초월
- centos
- proxmox
- php
- iptime
- Rocky
- SKT
- 복현오거리
- 킹북이초월
- Today
- Total
맛집 여행 캠핑 일상 생활
[OpenWrt] 라즈베리파이2 네트워크 설정 방법 본문
728x90
라즈베리파이2에 OpenWrt 를 한번 설치해봤는데 유선랜 포트가 1개뿐이라서 디폴트로 WAN 으로 되어있어서 접속해서 설정하기가 안되네요~
192.168.1.1 로 잡혀있어서 연결하려면 컴퓨터를 다이렉트로 랜선을 물려서 수동 아이피 192.168.1.2로 잡던지 아니면 라즈베리파이에 모니터와 USB키보드를 연결해서 직접 콘솔에서 작업하던지해야 됩니다.
일단 접속해서 네트워크를 DHCP나 STATIC으로 네트워크 연결이 되도록 만들어줍니다.
root@OpenWrt:~# cat /etc/config/network
config interface 'loopback'
option device 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fdd0:e6cb:6996::/48'
config device
option name 'br-lan'
option type 'bridge'
list ports 'eth0'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
option ip6assign '60'
위 설정이 기본값인데 아래와 같이 바꿔봅니다.
config interface 'loopback'
option device 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config interface 'lan'
option ifname 'eth0'
option proto 'dhcp'
#config interface 'lan'
#option ifname 'eth0'
#option proto 'static'
#option ipaddr '192.168.100.55'
#option gateway '192.168.100.1'
#option netmask '255.255.255.0'
#option dns '8.8.8.8'
config globals 'globals'
option ula_prefix 'fdd0:e6cb:6996::/48'
#config device
# option name 'br-lan'
# option type 'bridge'
# list ports 'eth0'
#config interface 'lan'
#option device 'br-lan'
#option proto 'static'
#option ipaddr '192.168.1.1'
#option netmask '255.255.255.0'
#option ip6assign '60'
일단 공유기에서 DHCP 로 아이피를 가져오게 해봤습니다.
잘되면 수동으로 STATIC으로 잡아도 됩니다.
config interface 'wan' 으로 해도 되지만 wan으로 하면 방화벽 때문에 ssh 접속이 안됩니다.
그래서 wan 대신에 lan 으로 설정합니다.
이제 통신이 해결됐으니까 다른 작업을 한번 해봐야겠네요~
728x90
반응형
'OpenWrt' 카테고리의 다른 글
[OpenWrt] lsusb: not found usbutils 패키지 설치 (0) | 2024.08.31 |
---|---|
[OpenWrt] ipTIME A1004ns OpenWrt 설치 및 복원 (0) | 2024.08.30 |
Trackback : | Comments :