Skip to main content

Ip address Fundamental (Jaringan Komputer)

Ip address dan subneting
Ip address merupakan singkatan dari internet protocol address, ip address merupakan identitas numerik yang di labelkan kepada suatu alat seperti komputer router atau printer yang terdapat atau terhubung dalam suatu jaringan.

Ip address terdiri dari 32 bit angka biner, yang di pecah menjadi 4 bagian yang dipisahkan oleh titik, 1 bagian terdiri dari 8 bit angka biner. Contoh penulisan ipp address
11000000.10101000.00000000.00000001
Dapat juga dituliskan dengan 4 kelompok angka decimal misalnya:
192.168.0.1



Range ip address
Klas A = 1.0.0.0 sampai dengan 127.255.255.255
Klas B = 128.0.0.0 sampai dengan 191.255.255.255
Klas C = 192.0.0.0 sampai dengan 223.255.255.255
Klas D = 224.0.0.0 sampai dengan 239.255.255.255
Klas E = 240.0.0.0 sampai dengan 247.255.255.255

Kategori IP Address
1.      Ip Static merupakan Ip Address yang secara permanen dimiliki oleh sebuah mesin
2.      Ip Dynamic adalah ip address yang berubah sesuai dengan pemakaian Ip address dalam jaringan saat itu, yang diatur oleh DHCP server
3.      Ip Privat adalah ip address dengan alamat jaringan yang khusus digunakan untuk pengalamatan dalam jaringan local
Contoh :  10.0.0.0, 172.16.0.0, 192.168.0.0
4.      Ip Public adalah ip address yang digunakan di internet pada umumnya

Ip address khusus
1.      0.0.0.0 : sebuah host yang baru di boot/dinyalakan (belum memiliki IP Address).
2.      127.0.0.1 : ip loopback, atau IP yang merujuk kepada host itu sendiri
3.      n.0.0.0, n.n.0.0 atau n.n.n.0 : Ip sebuah jaringan
4.      255.255.255.255 broadcast dalam jaringan sendiri
5.      n.255.255.255, n.n.255.255 atau n.n.n.255 broadcast ke jaringan luar (dengan alamat n)



Deni Ace

Comments

Popular posts from this blog

Section 6 Quiz Oracle Database Programming with SQL

Section 6 Quiz             (Answer all questions in this section)                                                             1.         Given the following descriptions of the employees and jobs tables, which of the following scripts will display each employee ï¾’ s possible minimum and maximum salaries based on their job title? EMPLOYEES Table: Name   Null?    Type EMPLOYEE_ID          NOT NULL     NUMBER (6) FIRST_NAME             VARCHAR2 (20) LAST_NAME  NOT NULL     VARCHAR2 (25) EMAIL NOT NULL     VARCHAR2 (25) PHONE_NUMBER                  VARCHAR2 (20) HIRE_DATE   NOT NULL     DATE JOB_ID           NOT NULL     VARCHAR2 (10) SALARY                     NUMBER (8,2) COMMISSION_PCT                NUMBER (2,2) MANAGER_ID                       NUMBER (6) DEPARTMENT_ID                 NUMBER (4) JOBS Table: Name   Null?    Type JOB_ID           NOT NULL     VARCHAR2 (10) JOB_TITLE     NOT NULL     VARCHAR2 (35) MIN_SALARY                      

Section 10 Quiz Database Programming With SQL

Section 10 Quiz             (Answer all questions in this section) 1.         A multiple-row operator expects how many values?   Mark for Review (1) Points             One or more (*)             Only one             Two or more             None 2.         The salary column of the f_staffs table contains the following values: 4000 5050 6000 11000 23000 Which of the following statements will return the last_name and first_name of those employees who earn more than 5000?  Mark for Review (1) Points             SELECT last_name, first_name FROM f_staffs WHERE salary IN (SELECT last_name, first_name FROM f_staffs WHERE salary <5000 o:p="">             SELECT last_name, first_name FROM f_staffs WHERE salary = (SELECT salary FROM f_staffs WHERE salary < 5000);             SELECT last_name, first_name FROM f_staffs WHERE salary IN (SELECT salary FROM f_staffs WHERE salary > 5000); (*)             SELEC

Section 2 Quiz Database Design Oracle

Section 2 Quiz             (Answer all questions in this section) 1.         An Entity Relationship model is independent of the hardware or software used for implementation. True or False?  Mark for Review (1) Points             True (*)             False 2.         A well structured ERD will show only some parts of the finished data model. You should never try to model the entire system in one diagram, no matter how small the diagram might be. True or False?           Mark for Review (1) Points             True             False (*) 3.         The purpose of an ERD is to document the proposed system and facilitate discussion and understanding of the requirements captured by the developer. True or False?          Mark for Review (1) Points             True (*)             False 4. Documenting Business Requirements helps developers control the scope of the system and prevents users from claiming that the new system does not meet their business req