하드웨어/Network 장비2011. 12. 6. 10:36
자세한 내용은 링크로 대체하고
[링크 : http://www.iptime.co.kr/~iptime/bbs/view.php?id=faq_setup&page=4...]

접속을 하는데 배쨰길래 확인을 해보니


"암호화 MPPE 에서 암호화 없음"을 안해줘서 이런 문제 발생


그나저나.. 두개의 망이 동일한 아이피 대역이다 보니 되는지 안되는지 알수가 없자너!!! ㅠ.ㅠ
Posted by 구차니
Microsoft/Windows2011. 12. 6. 10:33
아무생각없이 했는데...
최대절전모드(HIBERNATION) 으로 죽여놓은 노트북에는 접속이 안된다
반드시 최대절전모드를 풀고 정상종료후 해야 한다. 

2011/06/13 - [Microsoft] - windows 암호깨는 프로그램 
Posted by 구차니
파일방2011. 12. 5. 15:47
EDID 값을 보는건데 예전에 써본 EDID Viewer 보다는 백배 정도 좋은듯




[링크 : http://www.extron.com/download/software.aspx?material=2&id=E]
    [링크 : http://www.extron.com/download/dltrack.aspx?file=EDID_ManagerV1x0.exe&id=38772] << 다운로드
2011/09/12 - [파일방] - EDID Viewer / Reporter

 

'파일방' 카테고리의 다른 글

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
Posted by 구차니
Linux/Ubuntu2011. 12. 4. 23:23
modprobe bonding을 하지 않고 추가할 경우
$ 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 

modprobe bonding을 하지 않았고 interface를 잘못입력한 경우
$ sudo ifenslave eth0 eth1
Master 'eth0': Error: handshake with driver failed. Aborting 

modprobe bonding을 하지 않았을 경우
$ sudo ifenslave bond0 eth0 eth1
Master 'bond0': Error: handshake with driver failed. Aborting  
 
interface 입력 오류시
$ 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



'Linux > Ubuntu' 카테고리의 다른 글

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
Posted by 구차니
Linux/Ubuntu2011. 12. 4. 21:59
임베디드 우분투 이런거 없나?
aptitude로 관리해주는 임베디드 우분투 있으면 죽이겠는데 ㅋㅋㅋ

---
ajaxterm은 telnet이나 ssh를 웹에서 하게 해주는건데
ncurse 기반은 쓸수도 없고 방향키도 안되고 이래저래 많이 부족하지만
putty 같은거 받기 힘들경우에는 썩 나쁘진 않을듯
---

[링크 : https://help.ubuntu.com/community/Servers]
    [링크 : https://help.ubuntu.com/community/IptablesHowTo] firewall / masquerade
    [링크 : https://help.ubuntu.com/community/dhcp3-server]
    [링크 : https://help.ubuntu.com/community/BIND9ServerHowto] DNS Server
    [링크 : https://help.ubuntu.com/community/DynamicDNS] DDNS Client

'Linux > Ubuntu' 카테고리의 다른 글

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
snmp - ubuntu  (0) 2011.11.21
Posted by 구차니
Linux2011. 12. 4. 21:43
iptables에서 ip masquerade(마스커레이드/가장,위장)를 통해
IP 공유기 처럼 만드는 걸 해보려니 은근 알아야 할게 많은듯 -_-

일단 커널에서 ipt_MASQUERADE를 지원해야 하고
지원할경우에는 단순히 modprobe를 통해 해당 모듈을 사용함으로서 사용이 가능해진다(고 한다)

$ 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

생각해보니 공유기를 다음의 패키지가 필요할듯
dhcp3-server (NAT 내부에서 쓸 용도)
dhcp3-client (외부에서 공인 아이피 받기 위한 용도)

추가적으로
bind9 (DNS 서버)

그리고 기능으로는
포트 포워딩
dhcp 대역 설정

 

'Linux' 카테고리의 다른 글

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
Posted by 구차니
Linux/Ubuntu2011. 12. 3. 23:23
서버는 서버용 커널이 들어간것 외에는
iso 안에 들어있는 패키지의 차이이기 때문에 설치하면 결국에는 그게 그거라고 하면 되려나..
아무튼 가장 큰 차이점은 X.org(X11)의 설치 유무인데
ubuntu-desktop 패키지를 설치하면 한방에 해결된다고 한다.

[링크 : https://help.ubuntu.com/community/ServerFaq#What.27s_the_difference_between_desktop_and_server.3F]
[링크 : http://jhanglim.springnote.com/pages/1641042.xhtml]
[링크 : http://packages.ubuntu.com/hardy/ubuntu-desktop]

'Linux > Ubuntu' 카테고리의 다른 글

ifenslave 상황별 에러  (0) 2011.12.04
ubuntu server howto  (0) 2011.12.04
ubuntu 64bit server 10.04 LTS 부팅이 안돼!  (0) 2011.12.03
snmp - ubuntu  (0) 2011.11.21
ubuntu 10.04 LTS 최소 디스크 사이즈  (0) 2011.11.15
Posted by 구차니
Linux/Ubuntu2011. 12. 3. 23:12
3ware 9500S      - /dev/sda
LSI 35c1030 id 0 - /dev/sdb 
LSI 35c1030 id 1 - /dev/sdc 

머.. 이렇게 잡히는 상황인데
아무생각없이 GRUB2 설치할때 넘겼다가 부팅이 안되서 다시 설치해보니
어....라? /dev/sda에 GRUB2를 설치하는 걸 발견 -_-

부랴부랴 back - back 해서 /dev/sdb에 설치하도록 하고 나서
리부팅하니 문제없이 부팅 -_-
아오 미네랄!!!! 

'Linux > Ubuntu' 카테고리의 다른 글

ubuntu server howto  (0) 2011.12.04
ubuntu server / desktop edition의 차이점  (0) 2011.12.03
snmp - ubuntu  (0) 2011.11.21
ubuntu 10.04 LTS 최소 디스크 사이즈  (0) 2011.11.15
vlan 1은 지원안함?  (0) 2011.11.06
Posted by 구차니
하드웨어/RAID2011. 12. 3. 20:11
IDE 케이블 연결한다고 SHOW 하다보니, SATA 하드 한녀석이 파워가 뽑혀버렸다.
부팅이 안되고 못 넘어 가길래 ESC 눌러서 메시지를 보니

DEGRADED 라고 메시지가 뜨며 멈춰있는 상황
아무튼 RAID5 로 HDD4개를 묶어 쓰는 중이라 하드가 안 읽히거나 그런건 아닌거 같지만...
(어짜피 데이터도 안 넣어 놔서 -_- 단지 드라이브가 뜬다는 정도만 확인?)

 
아무튼, 다음번 부팅시에 다시 하드 전원을 연결하니 초기화 하는 메시지가 잠시 나왔다가 사라지는데..
단순히 내용이 없어서 금세 초기화 된걸려나? 아니면 기존에 사용하던 하드였기 때문일려나? 

'하드웨어 > RAID' 카테고리의 다른 글

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
Posted by 구차니
가슴이 두근두근..
솔찍히 될지 안될지도 모르겠고, 실패하면 뒤지는거 아닌지 걱정걱정하면서 업데이트  ㅠ.ㅠ

일단 플로피로 하려니.. bios 이미지 2MB -_-
DVD로 하려니 5.25 인치 DVD 회사에 놔둠 -_-
CD로 하려니 집에 공CD 없음 -_-

그래서! 아부지에게 USB 빌려서 freedos 설치하고 두근거리면서 실행하니 문제는 없이 된다.
FreeDos를 LiLi(Linux LiveCD Creator)로 USB에 굽고 USB의 최상위에 이미지를 복사해 넣으니
FreeDos에서 C:\ 로 연결이 되어 있었다.


 SE7520BD22.86B.P.07.00.0064 에서

 SE7520BD22.86B.P.09.00.0075 로 대폭 업그레이드!


목숨(?)걸고 BIOS 업데이트 한 이유는 원인불명의 Shadow Memory 오류였는데
흐음.. 내장 SCSI 때문이었던가 -_-

Build 0069: - RC01.08

- Fix system will reports "Insufficient Memory to Shadow PCI ROM" message
  during boot when LSI22320 SCSI card is installed.

[링크 : http://downloadmirror.intel.com/11115/eng/Release%20Notes.TXT

아무튼, 달라진건 WOL 기능과 Log자동 초기화 기능 정도?
Fan 관련해서 속도조절은 여전히 불가능 한건가 ...

아! 기분인진 모르겠지만, BIOS가 매우 빠르게 반응하는 느낌이다.

2011/12/03 - [파일방] - freedos

'하드웨어 > Server Case & board' 카테고리의 다른 글

NMI on Ubuntu Server Edition  (0) 2012.02.02
NMI 운용방법  (0) 2012.02.02
se7520db2 DDR/DDR2 SKU 식별 방법  (0) 2011.12.03
3핀 저항 / CT-3P-R  (0) 2011.12.01
NMI on BIOS  (0) 2011.09.25
Posted by 구차니