"Trans:GentooX86Handbook4-3"의 두 판 사이의 차이
둘러보기로 가기
검색하러 가기
Darkcircle (토론 | 기여) (새 문서: == 모듈러 네트워크 == === 네트워크 모듈 === 이제부터 모듈러 네트워크 스크립트를 지원합니다. 이는 새로운 인터페이스 형식과 기존 요소...) |
Darkcircle (토론 | 기여) |
||
6번째 줄: | 6번째 줄: | ||
{{Note|다른 요소를 지정하지 않는 한 모든 설정에 대해서는 /etc/conf.d/net에 언급되어 있습니다.}} | {{Note|다른 요소를 지정하지 않는 한 모든 설정에 대해서는 /etc/conf.d/net에 언급되어 있습니다.}} | ||
− | {{Example|코드 예제 1.1: 모듈 기본 설정|{{red|# Prefer ifconfig over iproute2}}<br/><nowiki>modules="ifconfig"</nowiki><br/><br/>{red|# You can also specify other modules for an interface<br/># In this case we prefer pump over dhcpcd}}<br/><nowiki>modules_eth0="pump"</nowiki><br/><br/>{{red|# You can also specify which modules not to use - for example you may be<br/># using a supplicant or linux-wlan-ng to control wireless configuration but<br/># you still want to configure network settings per ESSID associated with.}}<br/><nowiki>modules="!iwconfig"</nowiki>}} | + | |
+ | {{Example|코드 예제 1.1: 모듈 기본 설정|{{red|# Prefer ifconfig over iproute2}}<br/> | ||
+ | <nowiki>modules="ifconfig"</nowiki><br/> | ||
+ | <br/>{{red|# You can also specify other modules for an interface<br/># In this case we prefer pump over dhcpcd}}<br/><nowiki>modules_eth0="pump"</nowiki><br/><br/>{{red|# You can also specify which modules not to use - for example you may be<br/># using a supplicant or linux-wlan-ng to control wireless configuration but<br/># you still want to configure network settings per ESSID associated with.}}<br/><nowiki>modules="!iwconfig"</nowiki>}} |
2013년 1월 3일 (목) 19:30 판
모듈러 네트워크
네트워크 모듈
이제부터 모듈러 네트워크 스크립트를 지원합니다. 이는 새로운 인터페이스 형식과 기존 요소와 호환성을 유지하는 모듈 설정의 지원을 쉽게 추가할 수 있음을 의미합니다.
패키지를 설치할 필요가 있을 때 모듈을 기본적으로 불러옵니다. 패키지를 설치하지 않은 모듈을 여기에 지정했다면 설치해야 할 패키지가 무엇인가에 대한 오류를 만나게 될 것입니다. 이상적으로 서비스를 올리기 위해 두 개 이상의 동일한 패키지를 설치했고 둘 중 하나를 우선시해야 할 경우 모듈 설정만을 사용합니다.
참고: 다른 요소를 지정하지 않는 한 모든 설정에 대해서는 /etc/conf.d/net에 언급되어 있습니다.
코드 예제 1.1: 모듈 기본 설정 |
# Prefer ifconfig over iproute2 modules="ifconfig" # You can also specify other modules for an interface # In this case we prefer pump over dhcpcd modules_eth0="pump" # You can also specify which modules not to use - for example you may be # using a supplicant or linux-wlan-ng to control wireless configuration but # you still want to configure network settings per ESSID associated with. modules="!iwconfig" |