Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 한글가이드
- centos 8
- docker
- ssh key 배포
- Kibana
- endpoint security
- elastic stack
- XCP-ng
- x-pack
- G-suite
- pfsense
- proxycfg
- GitLab
- xe guest utilities
- 로그인불가
- hardening
- Windows
- 보안양파
- macos
- Kibana server is not ready yet
- freebsd
- ansible
- ELASTIC
- miniconda
- Elasticsearch
- bash
- PlayBook
- application security
- Proxy
Archives
- Today
- Total
선 밖에 선 자유인
phpIPAM IP 정보 추가 본문
- mysql에서 아래와 같이 실행하면 IP 주소별 노드 정보가 입력됨
mysql> insert into ipaddresses (subnetId, ip_addr, dns_name, mac, description, state) values ( <subnetId> , <ip_addr dec> , <hostname> , <Mac_Address> , <description>, 2 );
IP 정보는 dec 값으로 변환하여 사용한다.
- ex) 파이썬3을 이용한 간단한 ip to dec
MacBook:test X2$ python3
Python 3.6.3 (v3.6.3:2c5fed86e0, Oct 3 2017, 00:32:08)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import ipaddress
>>> print (int(ipaddress.ip_address("192.168.100.100")))
3232261220
>>>
Comments