net
-
CIDR Classless Inter-Domain Routing 사이더net 2017. 3. 14. 08:30
Classless Inter-Domain Routing 사이더 (네트워킹) - 위키백과, 우리 모두의 백과사전 http://www.subnet-calculator.com/ IPv4 CIDR Address format Difference to last address Mask Addresses Relative to class A, B, C Restrictions on a, b, c and d (0..255 unless noted) Typical use Decimal 2n a.b.c.d / 32 +0.0.0.0 255.255.255.255 1 20 1/ 256 C Host route a.b.c.d / 31 +0.0.0.1 255.255.255.254 2 21 1/ 128 C d = 0 ... (2n) ... ..
-
30배 빠른 불여우 만들기란다... HTTP pipelining 기술net 2014. 12. 2. 19:41
# HTTP 파이프라인 설정 network.http.pipelining = true network.http.proxy.pipelining = true # 최대 요청수 수정 network.http.pipelining.maxrequests = 30 # Firefox Developer Edtion은 32로 설정되어 있습니다. # 레이아웃 그리기 연기 시간 제어 nglayout.initialpaint.delay = 0 # 새로생성 HOW TO MAKE MOZILLA FIREFOX X30 TIMES FASTER HTTP pipelining idempotent 웹, HTTP 이해(1) HTTP 파이프라이닝 기술은 Request method중 POST를 제외한 OPTIONS, GET, HEAD, PUT, DELETE..
-
컴퓨터 네트워킹 튜토리얼 영상net 2014. 8. 11. 08:30
Computer Networking Tutorial (Playlist) 컴퓨터 네트워킹 튜토리얼 이 새로운 보스턴에서 컴퓨터 네트워크에 대한 자습서이다. 그것을 보면서이 도움이되는지 확인합니다. YouTube에서 전체 시리즈가있다. Computer Networks (Playlist) 컴퓨터 네트워킹 이 IIT Kharagpur에서 컴퓨터 과학 및 공학과 교수 S. 고쉬에 의해 컴퓨터 네트워크에 대한 강의 시리즈입니다. Broadband Networks: Concepts and Technology 광대역 네트워크 : 개념 및 기술 코스 설명 : 패킷 스위칭 및 ATM 네트워크에서 광대역 네트워크, Qos를 소개, 효과적인 대역폭, 유체 공정 큐잉 및 가중 공정 큐잉, TCP 혼잡 제어, TCP, 버퍼 관리..
-
LAN에서 가상의 느린 네트워크 환경 구성하기net 2011. 11. 25. 00:08
MAC OS X 초당 4KByte 속도 sudo ipfw pipe 1 config bw 4KByte/s sudo ipfw add 100 pipe 1 tcp from nay to me 80 localhost 보다는 mycomputer.local 처럼 컴퓨터의 호스트 이름이나 URL에 있는 외부 IP 주소를 사용. 룰 삭제 sudo ipfw delete 100 리눅스 http://linux-ip.net/articles/Traffic-Control-HOWTO/classless-qdiscs.html http://lartc.org/howto/lartc.ratelimit.single.html 윈도우 http://blogs.msdn.com/b/wndp/archiv/2006/07/30/653047.aspx http:/..
-
netsh 로 PC IP 설정net 2011. 5. 18. 16:26
bat @echo off @echo - XXX IP 설정 - netsh interface ip set address name="로컬 영역 연결" source=static addr=xxx.xxx.xxx.21 mask=255.255.254.0 netsh interface ip set address name="로컬 영역 연결" gateway=xxx.xxx.xxx.1 gwmetric=1 netsh interface ip set dns name="로컬 영역 연결" source=static addr=xxx.xxx.111.100 register=PRIMARY netsh interface ip add dns name="로컬 영역 연결" addr=xxx.xxx.202.100 index=2 netsh interface i..
-
네트워크에 있는 컴퓨터 ip 주소 알아내기...net 2007. 3. 31. 17:05
뭐... 다들 알고 계시겠지만....그래도 모르시는 분들을 위해 올립니다. 컴퓨터 이름은 알고 있는데... ip 주소를 알아야 할 때가 있습니다. nbtstat 와 arp 명령을 이용하는데요.. nbtstat -a 컴퓨터이름 위와 같이 명령을 치시면 밑에 mac address 가 나옵니다. 그리고 나서 arp -amac address를 비교하면 ip 를 알수 있습니다. 참고로 위의 nbtstat 명령은 꽤 쓸모있게 사용되는데요... 컴퓨터 이름은 물론 작업그룹... 무엇으로 로긴했는가등을 알려줍니다. nbtstat /?출처 : http://powerse.net/board_comm/contents.asp?idx=1334&gub1=%EC%9C%88%EB%8F%84%EC%9A%B0%EC%8A%A4&gub2=F..