'개소리 왈왈 > 모바일 생활' 카테고리의 다른 글
T wifi 다운로드 속도 및 꽁수 (8) | 2012.01.08 |
---|---|
t wifi zone 사용하기 (2) | 2012.01.03 |
connectify 그리고 안드로이드에는 ad-hoc이 안되? (6) | 2011.08.01 |
모토쿼티 부트로더 진입 (0) | 2011.07.27 |
WPS가 모야? (0) | 2011.07.25 |
T wifi 다운로드 속도 및 꽁수 (8) | 2012.01.08 |
---|---|
t wifi zone 사용하기 (2) | 2012.01.03 |
connectify 그리고 안드로이드에는 ad-hoc이 안되? (6) | 2011.08.01 |
모토쿼티 부트로더 진입 (0) | 2011.07.27 |
WPS가 모야? (0) | 2011.07.25 |
2T2R이 머여? (2) | 2012.02.07 |
---|---|
IEEE 1394 속도 벤치마크 관련문서들 (0) | 2011.12.13 |
RTSP 포워딩 특성 - Anygate / Iptime (0) | 2011.11.14 |
가상 랜카드는 MAC 어드레스 변경 불가? (0) | 2011.11.06 |
IEEE 1394 를 이용한 네트워크 (0) | 2011.10.26 |
LFH (0) | 2012.02.13 |
---|---|
windows media center edition 관련 프로세스 목록 (0) | 2011.12.25 |
windows route 명령어 (0) | 2011.11.18 |
바보같은 Windows Media Center Edition의 윈도우 파일 공유 (2) | 2011.11.13 |
Windows Media Center Edition (0) | 2011.10.29 |
keytweak (0) | 2011.12.23 |
---|---|
VPN 관련 오픈소스 (0) | 2011.12.07 |
gSOAP (0) | 2011.11.09 |
Intel VTune Amplifier XE / AMD CodeAnalyst Performance Analyzer / Nvidia Parallel Nsight (0) | 2011.11.09 |
MeshLab (0) | 2011.10.18 |
$ sudo ifconfig bond0 192.168.12.1 netmsk 255.255.255.0
SIOCSIFADDR: No such device
bond0: ERROR while getting interface flags: No such device
SIOCSIFADDR: No such device
bond0: ERROR while getting interface flags: No such device
SIOCSIFADDR: No such device
bond0: ERROR while getting interface flags: No such device
|
$ sudo ifenslave eth0 eth1 Master 'eth0': Error: handshake with driver failed. Aborting |
$ sudo ifenslave bond0 eth0 eth1
Master 'bond0': Error: handshake with driver failed. Aborting |
$ sudo ifenslave bond0 eth0 eht1
Slave 'eht1': Error: get settings failed: No such device. Skipping
|
# modprobe bonding
# ifconfig bond0 192.168.0.1 netmask 255.255.0.0
# ifenslave bond0 eth0 eth1
[링크 : http://linux.die.net/man/8/ifenslave] |
ubuntu server 로그인 화면 (0) | 2011.12.11 |
---|---|
Ubuntu 릴리즈별 이름 (0) | 2011.12.11 |
ubuntu server howto (0) | 2011.12.04 |
ubuntu server / desktop edition의 차이점 (0) | 2011.12.03 |
ubuntu 64bit server 10.04 LTS 부팅이 안돼! (0) | 2011.12.03 |
Ubuntu 릴리즈별 이름 (0) | 2011.12.11 |
---|---|
ifenslave 상황별 에러 (0) | 2011.12.04 |
ubuntu server / desktop edition의 차이점 (0) | 2011.12.03 |
ubuntu 64bit server 10.04 LTS 부팅이 안돼! (0) | 2011.12.03 |
ubuntu 10.04 LTS 최소 디스크 사이즈 (0) | 2011.11.15 |
$ sudo modprobe ipt_MASQUERADE $ lsmod | grep -i ipt
ipt_MASQUERADE 1407 0
nf_nat 15560 1 ipt_MASQUERADE
x_tables 14175 1 ipt_MASQUERADE
nf_conntrack 60943 3 ipt_MASQUERADE,nf_nat,nf_conntrack_ipv4
$ sudo iptables -L -t filter
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
$ sudo iptables -L -t nat
Chain PREROUTING (policy ACCEPT)
target prot opt source destination
Chain POSTROUTING (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
$ sudo iptables -L -t mangle Chain PREROUTING (policy ACCEPT)
target prot opt source destination
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Chain POSTROUTING (policy ACCEPT)
target prot opt source destination
$ sudo iptables -L -t raw Chain PREROUTING (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination |
The tables are as follows: filter:
This is the default table (if no -t option is passed). It contains the built-in chains INPUT (for packets destined to local sockets), FORWARD (for packets being routed through the box), and OUTPUT (for locally-generated packets).
nat: This table is consulted when a packet that creates a new connection is encountered. It consists of three built-ins: PREROUTING (for altering packets as soon as they come in), OUTPUT (for altering locally-generated packets before routing), and POSTROUTING (for altering packets as they are about to go out).
mangle: This table is used for specialized packet alteration. Until kernel 2.4.17 it had two built-in chains: PREROUTING (for altering incoming packets before routing) and OUTPUT (for altering locally-generated packets before routing). Since kernel 2.4.18, three other built-in chains are also supported: INPUT (for packets coming into the box itself), FORWARD (for altering packets being routed through the box), and POSTROUTING (for altering packets as they are about to go out).
raw: This table is used mainly for configuring exemptions from connection tracking in combination with the NOTRACK target. It registers at the netfilter hooks with higher priority and is thus called before ip_conntrack, or any other IP tables. It provides the following built-in chains: PREROUTING (for packets arriving via any network interface) OUTPUT (for packets generated by local processes)
[링크 : http://linux.die.net/man/8/iptables] |
sudo와 selinux (0) | 2011.12.25 |
---|---|
조이스틱 / 조이패드 on ubuntu (2) | 2011.12.23 |
리눅스를 라우터로 만들기 (0) | 2011.12.02 |
SATA 와 IDE 하드 순서 인식 뒤바뀌는 문제 (0) | 2011.11.23 |
vlan과 ip alias (0) | 2011.11.05 |
ifenslave 상황별 에러 (0) | 2011.12.04 |
---|---|
ubuntu server howto (0) | 2011.12.04 |
ubuntu 64bit server 10.04 LTS 부팅이 안돼! (0) | 2011.12.03 |
ubuntu 10.04 LTS 최소 디스크 사이즈 (0) | 2011.11.15 |
vlan 1은 지원안함? (0) | 2011.11.06 |
ubuntu server howto (0) | 2011.12.04 |
---|---|
ubuntu server / desktop edition의 차이점 (0) | 2011.12.03 |
ubuntu 10.04 LTS 최소 디스크 사이즈 (0) | 2011.11.15 |
vlan 1은 지원안함? (0) | 2011.11.06 |
ip alias on ubuntu (0) | 2011.11.05 |
SAS (0) | 2013.11.12 |
---|---|
우분투 내장 3ware 드라이버 (0) | 2011.12.11 |
stripe size에 따른 속도변화 (0) | 2011.07.31 |
3ware 9500s 속도 제한걸리는 이유? (0) | 2011.07.30 |
Intel(R) Embeded Server SATA RAID (0) | 2011.07.30 |