본문 바로가기
728x90

전체 글239

[JavaScript] 기본용어 예약어 자료형 변수 23.04.11 ↓전시간에 했던 홈페이지 만들기 전체 코드 더보기 HTML5 Example Preview 한국정보교육원 HTML5 데이터 데이터 CSS3 데이터 데이터 데이터 JavaScript 데이터 데이터 데이터 데이터 데이터 데이터 데이터 데이터 HTML5 개요와 활용 2013년 02월 14일 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent commodo justo ac lorem pretium vitae rhoncus lectus ullamcorper. Aliquam facilisis euismod diam sollicitudin commodo. Nunc sagittis sapien venenatis lorem vestibulum cursus .. 2023. 4. 11.
[오류] 알드라이브 호스트로 ftp.kedu.edu 접속 안되는 오류 https://onebyone1.tistory.com/260 [root@centos7 ~]# systemctl status named.service ● named.service - Berkeley Internet Name Domain (DNS) Loaded: loaded (/usr/lib/systemd/system/named.service; enabled; vendor preset: disabled) Active: active (running) since 월 2023-04-03 16:57:26 KST; 18s ago Main PID: 6585 (named) CGroup: /system.slice/named.service └─6585 /usr/sbin/named -u named -c /etc/named.c.. 2023. 4. 11.
[오류] 리눅스 yum 설치 오류 오류 메시지 : [root@localhost ~]# yum -y install ftp://ftp.pbone.net/mirror/archive.fedoraproject.org/fedora/linux/releases/20/Everything/i386/os/Packages/s/system-config-samba-1.2.100-2.fc20.noarch.rpm Loaded plugins: fastestmirror, langpacks system-config-samba-1.2.100-2.fc20.noarch.rpm | 282 kB 00:00:03 Examining /var/tmp/yum-root-iIeqBi/system-config-samba-1.2.100-2.fc20.noarch.rpm: system-config.. 2023. 4. 11.
리눅스 window와 폴더공유 , DHCP 연결 23.04.10 리눅스 = client 윈도우 = 서버 윈도우의 한 폴더를 마운트 시키면 그걸 리눅스가 쓸 수 있다 *samba 서버 구축하기 rpm -qa | grep samba yum -y install samba-client systemctl start samba-client smbclient -U root -L 10.5.1.22 ==>내 아이피 firewall-config [root@centos7 usr]# getenforce ==>확인 Disabled temp파일이 없다면 [root@centos7 ~]# mkdir /temp ==>만들고 [root@centos7 ~]# mount -t cifs //10.5.1.22/share /temp -o username=root -o password=1111 ==>cifs .. 2023. 4. 10.
[리눅스] samba 23.04.10 삼바 설치되어있는지 확인 rpm -qa | grep samba ping 168.126.63.1 vi /etc/sysconfig/network-scripts/ifcfg-ens33 리눅스 = client 윈도우 = 서버 윈도우의 한 폴더를 마운트 시키면 그걸 리눅스가 쓸 수 있다. vi /etc/sysconfig/network-scripts/ifcfg-ens33 TYPE=Ethernet BOOTPROTO=dhcp NAME=ens33 DEVICE=ens33 ONBOOT=yes #IPADDR=192.168.10.100 #GATEWAY=192.168.10.254 #NETMASK=255.255.255.0 #NETWORK=192.168.10.0 #BROADCAST=192.168.10.255 #DNS1=168.126... 2023. 4. 10.
[HTML] 23.04.10 padding은 내용과 border사이 (글자 메뉴와 네모테두리) 정중앙 배치하기 *{ margin : 0; padding : 0; /* 기본적으로 갖는 margin과 padding을 지워준다. */ } body{ background-color : cadetblue; } #container{ width : 500px; height : 250px; background-color: rebeccapurple; position : absolute; left : 50%; top : 50%; margin-left : -250px; margin-top : -125px; } 요소의 중앙 배치 상단, 왼쪽 박스 고정 #top{ background-color: rgb(81, 194, 81); position: fixed;.. 2023. 4. 10.
[html/css] bg_img 설정, 글꼴크기 설정 23.04.07 백그라운드 이미지 변경 body{ background-image: url('eee.png'), url('rrr.png'); background-size : 100% 400px; /*첫번째이미지, 두번째이미지 //만약 ,안써주면 이미지 전체 적용*/ background-repeat : no-repeat; background-attachment: fixed; /* 이걸줘야 배경이 고정되고 내용만 움직임 */ background-position: bottom; background: url('rrr.png') bottmon / 100% no-repeat fixed; } Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet consectetur adipisicing e.. 2023. 4. 7.
[실습] OSPF, EIGRP 23.04.06 conf t int s1/0 no shut encap fram no frame inverse no ip domain lookup no ip routing line c 0 logg sy exec-timeout 0 do copy r s ip add 넣기 R1] int loo0 ip add 6.6.1.1 255.255.255.0 int s1/0 ip add 6.6.12.1 255.255.255.0 frame map ip 6.6.12.2 102 br R2] int loo0 ip add 6.6.2.2 255.255.255.0 int s1/0.12 m ip add 6.6.12.2 255.255.255.0 frame map ip 6.6.12.1 201 br int s1/0.23 m ip add 6.6.23.2 255.. 2023. 4. 6.
[HTML] 선택자,이미지배경, 박스속성, 가시속성 23.04.06 #header { color: red; background-color: yellow; width: 800px; height: 80px; margin: 0 auto; /* 가운데 정렬이 된다. */ } #wrap{ width:800px; margin:0 auto } #aside { color: blanchedalmond; background-color: blueviolet; float: left; } #content { width:600px; float:left; color: olive; background-color: lightcoral; } .select { color: skyblue } .item { background-color: beige; } h1.select { color: brown; } 수.. 2023. 4. 6.
[리눅스] samba 서버구축.pdf 23.04.05 2023. 4. 5.
[리눅스] TELNET 23.04.05 su [root@centos7 ~]# rpm -qa | grep telnet-server ==>telnet 설치 확인여부 [root@centos7 ~]# yum list | grep telnet-server ==>그냥 yum이 설치할수있는 파일 확인. telnet-server.x86_64 1:0.17-66.el7 updates [root@centos7 ~]# yum -y install telnet-server ==>yum으로 설치하기 //만약 안된다면 [root@centos7 ~]# ps -ef | grep yum root 4154 2853 0 14:14 pts/0 00:00:00 /usr/bin/python /usr/bin/yum -y install telnet-server root 4332 4189 .. 2023. 4. 5.
[리눅스] 텔넷 서버 구축.pdf 23.04.05 2023. 4. 5.
[html] 입력태그, 공간태그, 시멘트태그, CSS(선택자) 23.04.05 내용이 많거나 보안이어야하는것은 post (로그인) 내용이 적고 보안되지않아도 되는것은 get방식(그냥 검색어) id는 label(레이블)을 위한것. "이름"글자를 클릭해도 옆에 커서가 반응한다. value는 전달해줄 값이다. 이름 비밀번호 성별 남자 여자 취미 산책 맛집투어 점심메뉴 선택 김밥 떡볶이 짜장면 짬뽕 선택옵션묶기 Multimedia Tag Connectivity Devic Access Animation 3D Trasform 3D Trasform 연관있는 입력 양식 그룹으로 묶기 위에 초록색 주석처리한거 되돌려내면 ↓ 이렇게 된다 두개로 나누고 싶으면 테이블도 둘로 나누면 된다. 입력태그 블록형식 태그 : div, h1~h6, p , 목록, 테이블 인라인형식 태그 : span, a, inpu.. 2023. 4. 5.
OSPF 23.04.04 OSPF 란 Open Shortest Path First 1. 가장 널리 사용되는 Link-State 라우팅 프로토콜이다. 2. 다익스크라 Dizkstra가 발명해서.., SPF(Shortest Path First) 알고리즘 3. IP Protocol 번호 89번 사용 4. Multicast 방식으로 정보를 교환한다. → 224.0.0.5(All-OSPF-Router) → 224.0.0.6(DR, BDR 수신) 5. Metric으로 cost를 사용한다. cost = 10^8/Bandwidth → total cost 는 각 구간의 cost 를 모두 합한 것이다. 6. Area별 강력한 축약 기능을 제공한다. 7. 모든 Area는 Backborn Area 0번에 접해야한다. 아까 eigrp 실습한거에 그냥 .. 2023. 4. 4.
EIGRP default-route 23.04.04 4.4.0.0 기본설정 공통] ena conf t no ip domain lookup line c 0 logg sy exec-timeout 0 exit int s1/0 no shut encapsulation frame-relay no frame-relay inverse-arp clock rate 64000 [R1] hostname R1 int lo0 ip add 4.4.1.1 255.255.255.0 int s1/0 ip address 4.4.12.1 255.255.255.0 frame-relay map ip 4.4.12.2 102 br R2] hostname R2 int lo0 ip add 4.4.2.2 255.255.255.0 int s1/0.12 m ip add 4.4.12.2 255.255.255.. 2023. 4. 4.
[html] 앵커태그 23.04.04 앵커 태그(href 속성을 줄때 쓰인다.) -외부, 내부 다 걸 수 있다. 아이디를 주고싶을때 //식별자로 #을 붙인다. 메일 전송하고 싶을때 mailto : abc123@gmail.com DOCTYPE html> HTML TEXT Basic Page 한국 네이버 다음 한국 네이버 다음 //새탭에서 열림. 는 인라인형식 는 블럭형식 내부링크걸기 ==> id로 연결하면 된다. 글자태그 이건 볼드체입니다 이건 이텔릭체입니다 이건 작은 글씨입니다 여기는 평평하고여기는 내려갑니다 여기도 평평하고여기는 올라가요 이건 밑줄입니다 이건 취소선입니다 여긴 볼드체에요 여긴 이텔릭체에요 여긴 글씨가 좀 작아요 평평한 글씨이고여기가 올라가요 평평한 글씨이고여기는 내려가요 여기에는 밑줄이 그어져요 여기에는 취소선이 그어져요 .. 2023. 4. 4.
리눅스 FTP HTTP DNS 총정리 23.04.03 공통설정 GNS설정 R1#confi ter R1(config)#int f0/1 R1(config-if)#shut R1(config-if)#mac-add 1234.1234.1212 R1(config-if)#no shut R1(config-if)#ip add dhcp R1(config-if)#int f0/0 R1(config-if)#ip add 192.168.10.254 255.255.255.0 R1(config-if)#no shut R1(config-if)#ip nat inside R1(config-if)#int f0/1 R1(config-if)#ip nat outside R1(config-if)#exit R1(config)#access-list 10 permit 192.168.10.0 0.0.0.255 .. 2023. 4. 3.
[리눅스] DNS 프로젝트관련(3) 23.04.03 2023.03.30 - [네트워크 수업/리눅스] - [리눅스] 서버구축 (리눅스의 보안정책 selinux)/프로젝트관련(1) 23.03.30 2023.03.31 - [네트워크 수업/리눅스] - [리눅스] 아파치 - 프로젝트관련(2) 23.03.31 2023.04.03 - [네트워크 수업/리눅스] - [리눅스] 프로젝트관련(3) 23.04.03 교재 : 2023.04.03 - [네트워크 수업] - DNS 서버.pdf 23.04.03 [root@centos7 ftp]# cd var/ftp/pub [root@centos7 pub]# vi /etc/sysconfig/network-scripts/ifcfg-ens33 [root@centos7 pub]# systemctl restart network [root@ce.. 2023. 4. 3.
HTML 요소 23.04.03 inline 스타일 Emmet 단축키 https://www.hanl.tech/blog/emmet-%EB%8B%A8%EC%B6%95%ED%82%A4-%EB%B0%8F-%ED%8A%B8%EB%A6%AD-9%EA%B0%80%EC%A7%80/ DOCTYPE html> Html5 basic 2023. 4. 3.
[리눅스] 아파치 - 프로젝트관련(2) 23.03.31 2023.03.31 - [네트워크 수업/리눅스] - [리눅스] Apache Web Server.pdf 23.03.31 2023.03.30 - [네트워크 수업/리눅스] - [리눅스] 서버구축 (리눅스의 보안정책 selinux)/프로젝트관련(1) 23.03.30 2023.03.31 - [네트워크 수업/리눅스] - [리눅스] 아파치 - 프로젝트관련(2) 23.03.31 2023.04.03 - [네트워크 수업/리눅스] - [리눅스] 프로젝트관련(3) 23.04.03 https://onebyone1.tistory.com/247 이어서 참고.. [root@centos7 heejae]# rpm -qa | grep httpd ==>rpm이 설치된 httpd를 찾아줘(Query(문의) 및 All(전부)) ==>앗 설치가.. 2023. 3. 31.
728x90