일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 런데이애플워치
- 여행
- apollo-server-v3
- 달리기
- deepseek
- apollo-sandbox
- Zone2
- kafka-connect
- 플라스틱은 어떻게 브랜드의 무기가 되는가
- 잘쉬어야지
- 트럼프2.0시대
- 한국걱정
- 프로젝트헤일메리
- 여니브레드
- 마법의연금굴리기
- neovim
- 마연굴
- schema-registry
- 가람집옹심이
- 강릉여행
- 오운완
- 루스틱
- 티지아이포럼
- 일권하는사회
- 저동하녹
- 송고버섯피자
- 중사랑
- 이코노미스트한국구독센터
- lner
- 런데이
- Today
- Total
목록개발/linux & tools (13)
해뜨기전에자자
원하는대로 잘 동작하진 않았는데 그래도 기록으로 남겨둔다. eth0이 내부망, eth1이 외부망이라고 했을때, mac에서 network interface priority를 eth1를 먼저 주고 아래 같이 등록해서 쓰려고 했다. 그러니까.. 외부망으로는 잘 나가는데 사설망은 eth0를 타도록.외부로 나가는 gateway가 사설 ip였어서 그거 제외하는것 까지 추가해서 하면 되지 않을까..?라는 생각이 들었지만 거기까지 해보진 않았다. sudo route add -net 10.0.0.0 -netmask 255.0.0.0 -interface eth0sudo route add -net 172.16.0.0 -netmask 255.240.0.0 -interface eth0sudo route add -net 192...
임의로 98765 포트에 proxy용 ssh server을 띄운다. /etc/ssh/sshd_config Port 22Port 98765GatewayPorts yesPermitTunnel yesAllowTcpForwarding yes 재시작sudo service sshd restart local machine:~/.ssh/configHost ssh-proxy-server User {username} GSSAPIAuthentication yes StrictHostKeyChecking noHost !ssh-proxy-server * User {username} StrictHostKeyChecking no GSSAPIAuthentication yes ForwardAgent yes ProxyCommand ssh..
useradd is native binary compiled with the system. But, adduser is a perl script which uses useradd binary in back-end.adduser is more user friendly and interactive than its back-end useradd. There's no difference in features provided. 제공하는 기능은 같은데 useradd는 system에 원래 있는거고, adduser는 설치해서 씀. 근데 adduser 가 쓰기 더 편해서 쓴다.ref: https://askubuntu.com/questions/611954/when-to-use-adduser-or-useradd