한국어

소프트스위치

온누리070 플레이스토어 다운로드
    acrobits softphone
     온누리 070 카카오 프러스 친구추가온누리 070 카카오 프러스 친구추가친추
     카카오톡 채팅 상담 카카오톡 채팅 상담카톡
    
     라인상담
     라인으로 공유

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


http://shincdevnote.blogspot.kr/search/label/ONVIF

인증서 만들기

출처 : 딤딤이 블로그(http://dimdim.tistory.com/50)

openssl 을 이용한 인증서 생성 절차를 정리한다.
참고로 여기서 개인키파일(key.pem), CSR파일(csr.pem), 인증서 파일 (crt.pem) 등의 파일명은 마음데로 변경할 수 있다.
1. 개인키 파일 생성
  - Random Sate 사용 여부 및 암호화는 필수가 아닌 선택사항이다.
  - 키파일을 암호화할 경우 패스워드 입력이 필요하며, 해당 패스워드를 알아야만 키파일을 사용할 수 있다. (암호화 했으니까 복호화해야 키값을 알지!!! 암복호화에 사용되는 것이 패스워드고!!!)
openssl md5 * > rand.dat  #Random State 파일 생성
openssl genrsa -rand rand.dat -des3 1024 > key.pem    #Random State 사용 & des3 암호화 사용 & 1024 bit 키 생성
openssl genrsa -des3 1024 > key.pem  #des3 암호화 사용 & 1024 bit 키 생성
openssl genrsa 1024 > key.pem  #1024bit 키생성 (패스워드 필요없음)
openssl genrsa > key.pem  #기본 512bit 키 생성

2. CSR 생성
  - CSR은 "Certificate Signing Request" 의 약자로 인증서 서명 요청을 의미한다. 좀더 쉽게 설명하면 CSR 파일은 인증서를 발급받기 위해서 나는 "아무개"이고 키값은 어떤걸 사용한다는 정보를 저장하고 있다.
openssl req -new -key key.pem > csr.pem
Enter pass phrase for key.pem:    #키파일 생성시 사용한 패스워드 입력 (키파일을 암호화한 경우만 필요한 과정임)
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [GB]:                                         #ISO 국가코드 입력
State or Province Name (full name) [Berkshire]:                       #도/시 입력
Locality Name (eg, city) [Newbury]:                                        #도시명 입력
Organization Name (eg, company) [My Company Ltd]:              #회사명 입력
Organizational Unit Name (eg, section) []:                               #조직명 입력
Common Name (eg, your name or your server's hostname) []:   #사용자명 혹은 서버 호스트명
Email Address []:                                                                 #이메일주소

3. SSL 인증서 파일 생성
3.1 공인 인증서 파일 생성
  - 공인인증서 발급 기관의 박급절차를 따라 인정서 파일을 발급받으며 인정서 발급시 위에서 생성한 CSR 파일이 필요하다.
  - 공인 인증 기관은 아래와 같다.
    + 한국전자인증 : http://www.crosscert.com
    + 금융결제원 전자인증센터(yessign) : https://www.yessign.or.kr/ssl/index.htm
3.2 사설 인증서 파일 생성
  - openssl을 이용하여 사설 인증서 파일을 생성한다. 
openssl req -key key.pem -x509 -nodes -sha1 -days 365 -in csr.pem -out crt.pem

조회 수 :
25574
등록일 :
2017.09.14
15:32:04 (*.160.88.18)
엮인글 :
http://webs.co.kr/index.php?document_srl=3311890&act=trackback&key=53a
게시글 주소 :
http://webs.co.kr/index.php?document_srl=3311890
List of Articles
번호 제목 글쓴이 조회 수 추천 수 날짜sort
142 Problem with presence_xml module Opensips 1.9 admin 49492   2014-03-06
 
141 How to install OpenSIPS on CentOS debian module add xcap admin 47268   2014-03-06
 
140 MediaProxy Installation Guide admin 184017   2014-03-06
 
139 rtpproxy Module admin 40111   2014-03-06
 
138 OpenSIPS Control Panel install guide admin 98159   2014-03-06
 
137 OpenSIPS Control Panel (OCP) Installation Guide admin 282310   2014-03-06
 
136 Installing RTPproxy Start RTPproxy in Bridged mode very good admin 104886   2014-03-07
 
135 Building Telephony Systems with OpenSIPS 1.6 RTPProxy + OpenSIPS 1.7 admin 42279   2014-03-07
 
134 RTPproxy Frequentry Asked Questions (FAQ) ¶ admin 177705   2014-03-07
 
133 Using the openSIPS Registrant Module admin 53625   2014-03-09
 
132 Kamailo OpenSIPs installation on Debian admin 84931   2014-03-09
 
131 opensips-1.10.0_src.tar.gz experimental source code documentation admin 39056   2014-03-09
 
130 Where to check OpenSIPS does not start? admin 44511   2014-03-09
 
129 book-opensips-101 / content / 3.2. SIP TLS Secure Calling.mediawiki admin 44250   2014-03-12
 
128 The Impact of TLS on SIP Server Performance file admin 43617   2014-03-12
 
127 OpenSIPS configuration for 2 or more FreeSWITCH installs admin 76507   2014-03-12
 
126 Conference Support in Kamailio (OpenSER) admin 88217   2014-03-12
 
125 SIP PBX - OpenSIPS and Asterisk configuration admin 165952   2014-03-12
 
124 telepresence: Open Source SIP Telepresence/MCU admin 185219   2014-03-12
 
123 Ekiga (formely known as GnomeMeeting) is an open source SoftPhone admin 44084   2014-03-12
 
122 SIPSorcery admin 45282   2014-03-18
 
121 Video conference server OpenMCU-ru - Introduction admin 55932   2014-04-01
 
120 2013 2012년 분야별 최고의 오픈소스 소프트웨어 124선 admin 65437   2014-04-05
 
119 SigIMS IMS Platform admin 39521   2014-05-24
 
118 opensips 1.11.2 install guide good 인스톨 가이드 admin 45207   2014-08-09
 
117 fusionPBX install debian wheezy admin 39037   2014-08-09
 
116 opensips 1.11.2 install Good Giide admin 67433   2014-08-09
 
115 Installation and configuration process record opensips 1.9.1 admin 96929   2014-08-09
 
114 OpenSIPS Installation Notes admin 48260   2014-08-09
 
113 Opensips Installation, How to. Good guide wiki page admin 37278   2014-08-10