Understanding Network Addressing 393C 192.0.0.0–223.255.255.255 192.16 dịch - Understanding Network Addressing 393C 192.0.0.0–223.255.255.255 192.16 Việt làm thế nào để nói

Understanding Network Addressing 39

Understanding Network Addressing 393
C 192.0.0.0–223.255.255.255 192.168.0.0–192.168.255.255
D 224.0.0.0–239.255.255.255 none
E 240.0.0.0–255.255.255.255 none
Within each of the three general-use network classes is a range of addresses reserved
for private use. Most IP addresses must be assigned to individual computers by a suitable
authority, lest two systems on the Internet both try to use a single address. Anybody
can use the reserved private address spaces, though. (These address blocks are sometimes
referred to as RFC1918 addresses, after the standards document—RFC1918—in which
they’re defi ned.) The caveat is that routers normally drop packets sent to these addresses,
effectively isolating them from the Internet as a whole. The idea is that these addresses
may be safely used by small private networks. Today, they’re often used behind Network
Address Translation (NAT) routers, which enable arbitrary numbers of computers to
“hide” behind a single system. The NAT router substitutes its own IP address on outgoing
packets and then directs the reply to the correct system. This is very handy if you want to
connect more computers to the Internet than you have IP addresses.
I generally use reserved private addresses for examples in this book.
Unless otherwise specified, these examples work equally well on conventional
assigned (non-private) IP addresses.
IPv6 has its equivalent to private addresses. IPv6 site-local addresses may be routed
within a site but not off-site. They begin with the hexadecimal number fec, fed, fee, or fef.
Link-local addresses are restricted to a single network segment; they shouldn’t be routed at
all. These addresses begin with the hexadecimal number fe8, fe9, fea, or feb.
IPv4 address classes were designed to simplify routing; but as the Internet evolved, they
became restrictive. Thus, today they serve mainly as a way to set default netmasks, such as
255.0.0.0 for Class A addresses or 255.255.255.0 for Class C addresses. Most confi guration
tools set these netmasks automatically, but you can override the settings if necessary.
IP addresses and netmasks are extremely important for network confi guration. If your
network doesn’t use DHCP or a similar protocol to assign IP addresses automatically, you
must confi gure your system’s IP address manually. A mistake in this confi guration can
cause a complete failure of networking or more subtle errors, such as an inability to
communicate with just some computers.
Non-TCP/IP stacks have their own addressing methods. NetBEUI uses
machine names; it has no separate numeric addressing method. AppleTalk
uses two 16-bit numbers. These addressing schemes are independent
from IP addresses.
c08.indd 393 11/12/12 12:12 PM
394 Chapter 8 ■ Configuring Basic Networking
Broadcasting Data
Earlier, I mentioned broadcasts. A broadcast is a type of network transmission that’s sent
to all the computers on a local network, or occasionally all of the computers on a remote network.
Under TCP/IP, a broadcast is done by specifying binary 1 values in all the machine
bits of the IP address. The network portion of the IP address may be set to the network’s
regular value, and this is required for directed broadcasts—that is, those that are sent to a
remote network. (Many routers drop directed broadcasts, though.) In many cases, broadcasts
are specifi ed by the use of 255.255.255.255 as an IP address. Packets directed at this
address are sent to all the machines on a local network.
Because the broadcast address for a network is determined by the IP address and netmask,
you can convert between the broadcast address and netmask, given one of these and a
computer’s IP address. If the netmask happens to consist of whole-byte values (expressed as
0 or 255 in dotted quad notation), the conversion is easy: Replace the IP address
components that have 0 values in the dotted quad netmask with 255 values to get the
broadcast address. For instance, consider a computer with an IP address of 172.30.9.102
and a netmask of 255.255.0.0. The fi nal two elements of the netmask have 0 values, so
you swap in 255 values for these fi nal two elements in the IP address to obtain a broadcast
address of 172.30.255.255.
In the case of a CIDR address that has non-255 and non-0 values in the netmask, the situation
is more complex because you must resort to binary (base 2) numbers. For instance,
consider a computer with an IP address of 172.30.9.102 and a netmask of 255.255.128.0
(that is, 172.30.0.0/17). Expressed in binary, these numbers are
10101100 00011110 00001001 01100110
11111111 11111111 10000000 00000000
To create the broadcast address, you must set the top (network address) values to 1 when
the bottom (netmask) value is 0. In this case, the result is
10101100 00011110 01111111 11111111
Converted back into base 10 notation, the resulting broadcast address is 172.30.127.255.
Fortunately, you seldom need to perform such computations. When confi guring a computer,
you can enter the IP address and netmask and let the computer do the binary
computations.
Understanding Hostnames
Computers work with numbers, so it’s not surprising that TCP/IP uses numbers as computer
addresses. People, though, work better with names. For this reason, TCP/IP includes a
way to link names for computers (known as hostnames) to IP addresses. In fact, there
are several ways to do this, some of which are described in the next section, “Resolving
Hostnames.”
As with IP addresses, hostnames are composed of two parts: machine names and
domain names. The former refers to a specifi c computer and the latter to a collection of
computers. Domain names are not equivalent to the network portion of an IP address,
c08.indd 394 11/12/12 12:12 PM
Understanding Network Addressing 395
though; they’re completely independent concepts. Domain names are registered for use by
an individual or organization, which may assign machine names within the domain and
link those machine names to any arbitrary IP address desired. Nonetheless, there is
frequently some correspondence between domains and network addresses because an
individual or organization that controls a domain is also likely to want a block of IP
addresses for the computers in that domain.
Internet domains are structured hierarchically. At the top of the hierarchy are the
top-level domains (TLDs), such as .com, .edu, and .uk. These TLD names appear at
the end of an Internet address. Some correspond to nations (such as .uk and .us, for the
United Kingdom and the United States, respectively), but others correspond to particular
types of entities (such as .com and .edu, which stand for commercial and educational
organizations, respectively). Within each TLD are various domains that identify
specifi c organizations, such as sybex.com for Sybex or loc.gov for the Library of Congress.
These organizations may optionally break their domains into subdomains, such as
cis.upenn.edu for the Computer and Information Science department at the University of
Pennsylvania. Even subdomains may be further subdivided into their own subdomains;
this structure can continue for many levels but usually doesn’t. Domains and subdomains
include specifi c computers, such as www.sybex.com, Sybex’s Web server.
When you confi gure your Linux computer, you may need to know its hostname. This
will be assigned by your network administrator and will be a machine name within your
organization’s domain. If your computer isn’t part of an organizational network (say, if
it’s a system that doesn’t connect to the Internet at all or if it connects only via a dial-up
account), you’ll have to make up a hostname. Alternatively, you can register a domain
name, even if you don’t use it for running your own servers. Check http://www.icann.org
/registrar-reports/accredited-list.html for pointers to accredited domain registrars.
Most registrars charge between $10 and $15 per year for domain registration. If your
network uses DHCP, it may or may not assign your system a hostname automatically.
If you make up a hostname, choose an invalid domain name. This will
guarantee that you don’t accidentally give your computer a name that
legitimately belongs to somebody else. Such a name conflict might
prevent you from contacting that system, and it could cause other
problems as well, such as misdirected email. Four TLDs—.example,
.invalid, .localhost, and .test—are reserved for such purposes. Three
second-level domains—.example.com, .example.net, and .example.org—
are also reserved and so may be safely used.
Resolving Hostnames
The Domain Name System (DNS) is a distributed database of computers that converts
between IP addresses and hostnames. Every domain must maintain at least two DNS
servers that can either provide the names for every computer within the domain or redirect
a DNS query to another DNS server that can better handle the request. Therefore, looking
0/5000
Từ: -
Sang: -
Kết quả (Việt) 1: [Sao chép]
Sao chép!
Understanding Network Addressing 393C 192.0.0.0–223.255.255.255 192.168.0.0–192.168.255.255D 224.0.0.0–239.255.255.255 noneE 240.0.0.0–255.255.255.255 noneWithin each of the three general-use network classes is a range of addresses reservedfor private use. Most IP addresses must be assigned to individual computers by a suitableauthority, lest two systems on the Internet both try to use a single address. Anybodycan use the reserved private address spaces, though. (These address blocks are sometimesreferred to as RFC1918 addresses, after the standards document—RFC1918—in whichthey’re defi ned.) The caveat is that routers normally drop packets sent to these addresses,effectively isolating them from the Internet as a whole. The idea is that these addressesmay be safely used by small private networks. Today, they’re often used behind NetworkAddress Translation (NAT) routers, which enable arbitrary numbers of computers to“hide” behind a single system. The NAT router substitutes its own IP address on outgoingpackets and then directs the reply to the correct system. This is very handy if you want toconnect more computers to the Internet than you have IP addresses.I generally use reserved private addresses for examples in this book.Unless otherwise specified, these examples work equally well on conventionalassigned (non-private) IP addresses.IPv6 has its equivalent to private addresses. IPv6 site-local addresses may be routedwithin a site but not off-site. They begin with the hexadecimal number fec, fed, fee, or fef.Link-local addresses are restricted to a single network segment; they shouldn’t be routed atall. These addresses begin with the hexadecimal number fe8, fe9, fea, or feb.IPv4 address classes were designed to simplify routing; but as the Internet evolved, theybecame restrictive. Thus, today they serve mainly as a way to set default netmasks, such as255.0.0.0 for Class A addresses or 255.255.255.0 for Class C addresses. Most confi gurationtools set these netmasks automatically, but you can override the settings if necessary.IP addresses and netmasks are extremely important for network confi guration. If yournetwork doesn’t use DHCP or a similar protocol to assign IP addresses automatically, youmust confi gure your system’s IP address manually. A mistake in this confi guration cancause a complete failure of networking or more subtle errors, such as an inability tocommunicate with just some computers.Non-TCP/IP stacks have their own addressing methods. NetBEUI usesmachine names; it has no separate numeric addressing method. AppleTalkuses two 16-bit numbers. These addressing schemes are independentfrom IP addresses.c08.indd 393 11/12/12 12:12 PM394 Chapter 8 ■ Configuring Basic NetworkingBroadcasting DataEarlier, I mentioned broadcasts. A broadcast is a type of network transmission that’s sentto all the computers on a local network, or occasionally all of the computers on a remote network.
Under TCP/IP, a broadcast is done by specifying binary 1 values in all the machine
bits of the IP address. The network portion of the IP address may be set to the network’s
regular value, and this is required for directed broadcasts—that is, those that are sent to a
remote network. (Many routers drop directed broadcasts, though.) In many cases, broadcasts
are specifi ed by the use of 255.255.255.255 as an IP address. Packets directed at this
address are sent to all the machines on a local network.
Because the broadcast address for a network is determined by the IP address and netmask,
you can convert between the broadcast address and netmask, given one of these and a
computer’s IP address. If the netmask happens to consist of whole-byte values (expressed as
0 or 255 in dotted quad notation), the conversion is easy: Replace the IP address
components that have 0 values in the dotted quad netmask with 255 values to get the
broadcast address. For instance, consider a computer with an IP address of 172.30.9.102
and a netmask of 255.255.0.0. The fi nal two elements of the netmask have 0 values, so
you swap in 255 values for these fi nal two elements in the IP address to obtain a broadcast
address of 172.30.255.255.
In the case of a CIDR address that has non-255 and non-0 values in the netmask, the situation
is more complex because you must resort to binary (base 2) numbers. For instance,
consider a computer with an IP address of 172.30.9.102 and a netmask of 255.255.128.0
(that is, 172.30.0.0/17). Expressed in binary, these numbers are
10101100 00011110 00001001 01100110
11111111 11111111 10000000 00000000
To create the broadcast address, you must set the top (network address) values to 1 when
the bottom (netmask) value is 0. In this case, the result is
10101100 00011110 01111111 11111111
Converted back into base 10 notation, the resulting broadcast address is 172.30.127.255.
Fortunately, you seldom need to perform such computations. When confi guring a computer,
you can enter the IP address and netmask and let the computer do the binary
computations.
Understanding Hostnames
Computers work with numbers, so it’s not surprising that TCP/IP uses numbers as computer
addresses. People, though, work better with names. For this reason, TCP/IP includes a
way to link names for computers (known as hostnames) to IP addresses. In fact, there
are several ways to do this, some of which are described in the next section, “Resolving
Hostnames.”
As with IP addresses, hostnames are composed of two parts: machine names and
domain names. The former refers to a specifi c computer and the latter to a collection of
computers. Domain names are not equivalent to the network portion of an IP address,
c08.indd 394 11/12/12 12:12 PM
Understanding Network Addressing 395
though; they’re completely independent concepts. Domain names are registered for use by
an individual or organization, which may assign machine names within the domain and
link those machine names to any arbitrary IP address desired. Nonetheless, there is
frequently some correspondence between domains and network addresses because an
individual or organization that controls a domain is also likely to want a block of IP
addresses for the computers in that domain.
Internet domains are structured hierarchically. At the top of the hierarchy are the
top-level domains (TLDs), such as .com, .edu, and .uk. These TLD names appear at
the end of an Internet address. Some correspond to nations (such as .uk and .us, for the
United Kingdom and the United States, respectively), but others correspond to particular
types of entities (such as .com and .edu, which stand for commercial and educational
organizations, respectively). Within each TLD are various domains that identify
specifi c organizations, such as sybex.com for Sybex or loc.gov for the Library of Congress.
These organizations may optionally break their domains into subdomains, such as
cis.upenn.edu for the Computer and Information Science department at the University of
Pennsylvania. Even subdomains may be further subdivided into their own subdomains;
this structure can continue for many levels but usually doesn’t. Domains and subdomains
include specifi c computers, such as www.sybex.com, Sybex’s Web server.
When you confi gure your Linux computer, you may need to know its hostname. This
will be assigned by your network administrator and will be a machine name within your
organization’s domain. If your computer isn’t part of an organizational network (say, if
it’s a system that doesn’t connect to the Internet at all or if it connects only via a dial-up
account), you’ll have to make up a hostname. Alternatively, you can register a domain
name, even if you don’t use it for running your own servers. Check http://www.icann.org
/registrar-reports/accredited-list.html for pointers to accredited domain registrars.
Most registrars charge between $10 and $15 per year for domain registration. If your
network uses DHCP, it may or may not assign your system a hostname automatically.
If you make up a hostname, choose an invalid domain name. This will
guarantee that you don’t accidentally give your computer a name that
legitimately belongs to somebody else. Such a name conflict might
prevent you from contacting that system, and it could cause other
problems as well, such as misdirected email. Four TLDs—.example,
.invalid, .localhost, and .test—are reserved for such purposes. Three
second-level domains—.example.com, .example.net, and .example.org—
are also reserved and so may be safely used.
Resolving Hostnames
The Domain Name System (DNS) is a distributed database of computers that converts
between IP addresses and hostnames. Every domain must maintain at least two DNS
servers that can either provide the names for every computer within the domain or redirect
a DNS query to another DNS server that can better handle the request. Therefore, looking
đang được dịch, vui lòng đợi..
Kết quả (Việt) 2:[Sao chép]
Sao chép!
Hiểu Mạng Giải quyết 393
C 192.0.0.0-223.255.255.255 192.168.0.0-192.168.255.255
D 224.0.0.0-239.255.255.255 none
E 240.0.0.0-255.255.255.255 none
Trong mỗi ba lớp mạng nói chung sử dụng là một phạm vi các địa chỉ dành riêng
cho sử dụng cá nhân. Hầu hết các địa chỉ IP phải được gán cho máy tính cá nhân của một phù hợp
thẩm quyền, vì sợ rằng hai hệ thống trên Internet cả hai cố gắng sử dụng một địa chỉ duy nhất. Bất kỳ ai
có thể sử dụng không gian địa chỉ tư nhân dành riêng, mặc dù. (Các khối địa chỉ đôi khi được
gọi là địa chỉ RFC1918, sau khi các tiêu chuẩn tài liệu-RFC1918-in mà
họ đang Defi ned.) Thông báo trước là các router thông thường thả các gói tin gửi đến các địa chỉ này,
cách ly chúng một cách hiệu quả từ Internet như một toàn thể . Ý tưởng là những địa chỉ này
có thể được sử dụng một cách an toàn bởi các mạng tư nhân nhỏ. Hôm nay, chúng tôi thường sử dụng đằng sau mạng
Address Translation (NAT) router, cho phép số lượng tùy ý của các máy tính để
"ẩn" đằng sau một hệ thống duy nhất. Các bộ định tuyến NAT sẽ thay thế địa chỉ IP riêng của mình trên đi
gói dữ liệu và sau đó chỉ đạo các trả lời đúng hệ thống. Điều này là rất hữu ích nếu bạn muốn
kết nối nhiều máy tính hơn với Internet hơn bạn có địa chỉ IP.
Tôi thường sử dụng địa chỉ riêng dành cho các ví dụ trong cuốn sách này.
Trừ khi có quy định khác, các ví dụ làm việc tốt như nhau trên thông thường
được giao (không tin) IP địa chỉ.
IPv6 có giá trị tương đương với địa chỉ riêng. IPv6 địa chỉ site-local có thể được chuyển
trong vòng một trang web, nhưng không off-site. Họ bắt đầu với các số thập lục phân FEC, cho ăn, lệ phí, hoặc fef.
Địa chỉ Link-local được giới hạn cho một phân đoạn mạng duy nhất; họ không nên được định tuyến tại
tất cả. Các địa chỉ bắt đầu với fe8 số thập lục phân, fe9, fea, hoặc tháng hai
lớp địa chỉ IPv4 được thiết kế để đơn giản hóa việc định tuyến; nhưng khi Internet phát triển, họ
đã trở thành hạn chế. Vì vậy, hôm nay họ phục vụ chủ yếu như là một cách để thiết lập netmasks mặc định, chẳng hạn như
255.0.0.0 cho địa chỉ lớp A hoặc 255.255.255.0 cho địa chỉ lớp C. Hầu hết guration confi
công cụ thiết lập các netmasks tự động, nhưng bạn có thể ghi đè lên các thiết lập nếu cần thiết.
Địa chỉ IP và netmasks là cực kỳ quan trọng đối với mạng guration confi. Nếu bạn
mạng không sử dụng DHCP hoặc một giao thức tương tự để gán địa chỉ IP tự động, bạn
phải confi địa chỉ IP Hình vẽ hệ thống của bạn một cách thủ công. Một sai lầm trong guration confi này có thể
gây ra một sự thất bại hoàn toàn của mạng hoặc lỗi tinh tế hơn, chẳng hạn như không có khả năng
giao tiếp chỉ với một số máy tính.
Stacks Non-TCP / IP có phương pháp giải quyết vấn đề của riêng họ. NetBEUI sử dụng
tên máy; nó không có phương pháp giải quyết số riêng biệt. AppleTalk
sử dụng hai số 16-bit. Những đề án giải quyết độc lập
từ các địa chỉ IP.
C08.indd 393 11/12/12 12:12 PM
394 Chương 8 ■ Cấu hình mạng cơ bản
Broadcasting dữ liệu
Trước đó, tôi đã đề cập chương trình phát sóng. Chương trình phát sóng là một loại mạng truyền dữ liệu nào được gửi
đến tất cả các máy tính trên một mạng cục bộ, hoặc đôi khi tất cả các máy tính trên một mạng từ xa.
Dưới TCP / IP, một chương trình phát sóng được thực hiện bằng cách xác định nhị phân 1 giá trị trong tất cả các máy
bit các địa chỉ IP. Các phần mạng của địa chỉ IP có thể được thiết lập để của mạng lưới
giá trị thông thường, và điều này là cần thiết cho chương trình phát sóng, đó là đạo diễn, những người được gửi đến một
mạng từ xa. (Nhiều router thả đạo chương trình phát sóng, mặc dù.) Trong nhiều trường hợp, chương trình phát sóng
là ed specifi bởi việc sử dụng các 255.255.255.255 như một địa chỉ IP. Các gói tin hướng dẫn tại đây
địa chỉ được gửi đến tất cả các máy trên mạng nội bộ.
Bởi vì địa chỉ quảng bá cho một mạng được xác định bởi địa chỉ IP và mặt nạ mạng,
bạn có thể chuyển đổi giữa các địa chỉ broadcast và netmask, được đưa ra một trong những điều này và một
IP của máy tính địa chỉ nhà. Nếu mặt nạ mạng xảy ra để bao gồm các giá trị toàn bộ-byte (thể hiện như
0 hoặc 255 trong ký hiệu quad chấm), việc chuyển đổi rất dễ dàng: Thay thế địa chỉ IP
thành phần có giá trị 0 trong quad netmask rải rác với 255 giá trị để có được
địa chỉ broadcast . Ví dụ, hãy xem xét một máy tính với một địa chỉ IP của 172.30.9.102
và một mặt nạ mạng là 255.255.0.0. Các fi nal hai yếu tố của mặt nạ có giá trị 0, vì vậy
bạn trao đổi trong giá trị 255 cho fi nal hai yếu tố này trong các địa chỉ IP để có được một chương trình phát sóng
địa chỉ 172.30.255.255.
Trong trường hợp của một địa chỉ CIDR có phi-255 và phi 0-giá trị trong mặt nạ mạng, tình hình
phức tạp hơn bởi vì bạn phải nghỉ mát để nhị phân (cơ sở 2) số. Ví dụ,
hãy xem xét một máy tính với một địa chỉ IP của 172.30.9.102 và một mặt nạ mạng của 255.255.128.0
(có nghĩa là, 172.30.0.0/17). Thể hiện trong hệ nhị phân, những con số này
10101100 00011110 00001001 01100110
11111111 11111111 10000000 00000000
Để tạo ra các địa chỉ quảng bá, bạn phải thiết lập đầu (địa chỉ mạng) giá trị 1 khi
phía dưới (netmask) giá trị là 0. Trong trường hợp này, kết quả là
10101100 00011110 01111111 11111111
Chuyển Đổi trở lại vào cơ sở 10 ký hiệu, địa chỉ quảng bá kết quả là 172.30.127.255.
May mắn thay, bạn ít khi cần phải thực hiện các tính toán như vậy. Khi confi guring một máy tính,
bạn có thể nhập địa chỉ IP và mặt nạ mạng và để cho các máy tính làm nhị phân
tính.
Hiểu Hostname
Máy tính làm việc với các con số, do đó, nó không phải là đáng ngạc nhiên rằng TCP / IP sử dụng các con số như máy tính
địa chỉ. Người, tuy nhiên, làm việc tốt hơn với những cái tên. Vì lý do này, TCP / IP bao gồm một
cách để liên kết tên cho máy tính (gọi là hostname) thành địa chỉ IP. Trong thực tế, có
một số cách để làm điều này, một số trong đó được mô tả trong phần tiếp theo, "Giải
quyết. Hostname"
Cũng như với các địa chỉ IP, tên máy gồm hai phần: tên máy và
tên miền. Các cựu đề cập đến một máy tính c specifi và sau này với một bộ sưu tập các
máy tính. Tên miền là không tương đương với phần mạng của một địa chỉ IP,
c08.indd 394 11/12/12 12:12
Hiểu Mạng Giải quyết 395
mặc dù; họ khái niệm hoàn toàn độc lập. Tên miền được đăng ký để sử dụng bởi
một cá nhân hay tổ chức, trong đó có thể chỉ định tên máy bên trong miền và
liên kết các máy tên cho bất kỳ địa chỉ IP tùy ý muốn. Tuy nhiên, có
thường xuyên một số tương ứng giữa các tên miền và các địa chỉ mạng vì một
cá nhân hoặc tổ chức kiểm soát một tên miền cũng có khả năng muốn một khối IP
địa chỉ cho các máy tính trong miền đó.
Tên miền Internet được cấu trúc theo thứ bậc. Ở phía trên của hệ thống phân cấp là các
tên miền cấp cao (TLD) như .com, .edu và .uk. Những tên TLD xuất hiện ở
phần cuối của một địa chỉ Internet. Một số tương ứng với các quốc gia (như .uk và .us, cho
Vương quốc Anh và Hoa Kỳ, tương ứng), nhưng những người khác đặc biệt tương ứng với
loại thực thể (như .com và .edu, mà đứng cho thương mại và giáo dục
tổ chức, tương ứng). Trong mỗi TLD là những tên miền khác nhau mà xác định
các tổ chức c specifi, như sybex.com cho Sybex hoặc loc.gov cho Thư viện Quốc hội.
Các tổ chức này có thể tuỳ ý phá vỡ lĩnh vực của họ vào các tên miền phụ, chẳng hạn như
cis.upenn.edu cho các máy tính và Sở Khoa học thông tin tại Đại học
Pennsylvania. Ngay cả tên miền phụ có thể được chia nhỏ thành các tên miền phụ của mình;
cấu trúc này có thể tiếp tục trong nhiều cấp độ nhưng thường thì không. Tên miền và tên miền phụ
bao gồm máy tính c specifi, như www.sybex.com, máy chủ Web của Sybex.
Khi bạn confi Hình vẽ máy tính Linux của bạn, bạn có thể cần phải biết tên máy của mình. Điều này
sẽ được chỉ định bởi người quản trị mạng của bạn và sẽ là một tên máy trong bạn
miền của tổ chức. Nếu máy tính của bạn không phải là một phần của một mạng lưới tổ chức (nói, nếu
đó là một hệ thống mà không kết nối internet vào tất cả hoặc nếu nó chỉ kết nối thông qua một dial-up
tài khoản), bạn sẽ phải tạo nên một hostname . Ngoài ra, bạn có thể đăng ký một tên
miền, tên, thậm chí nếu bạn không sử dụng nó để chạy các máy chủ của riêng bạn. Kiểm tra http://www.icann.org
/registrar-reports/accredited-list.html cho con trỏ để đăng ký tên miền chính thức công nhận.
Hầu hết các công ty đăng ký phí giữa $ 10 và $ 15 cho mỗi năm cho đăng ký tên miền. Nếu bạn
mạng sử dụng DHCP, nó có thể hoặc không thể chuyển các hệ thống của bạn một tên máy tự động.
Nếu bạn tạo nên một hostname, chọn một tên miền không hợp lệ. Điều này sẽ
đảm bảo rằng bạn không vô tình cung cấp cho máy tính của bạn một cái tên
hợp pháp thuộc về người khác. Một cuộc xung đột tên như vậy có thể
ngăn cản bạn liên hệ với hệ thống đó, và nó có thể gây ra các
vấn đề cũng như email sai địa chỉ. Bốn tên miền cấp cao-.example,
.invalid, .localhost, và .test-được dành riêng cho mục đích đó. Ba
cấp hai domains-.example.com, .example.net, và .example.org-
cũng được dành riêng và như vậy có thể được sử dụng một cách an toàn.
Giải quyết Hostname
The Domain Name System (DNS) là một cơ sở dữ liệu phân tán của các máy tính có thể chuyển đổi
giữa địa chỉ IP và tên máy. Mỗi miền phải duy trì ít nhất hai DNS
server mà có thể cung cấp tên cho mỗi máy tính trong miền hoặc chuyển hướng
một truy vấn DNS đến một máy chủ DNS tốt hơn có thể xử lý các yêu cầu. Vì vậy, tìm kiếm
đang được dịch, vui lòng đợi..
 
Các ngôn ngữ khác
Hỗ trợ công cụ dịch thuật: Albania, Amharic, Anh, Armenia, Azerbaijan, Ba Lan, Ba Tư, Bantu, Basque, Belarus, Bengal, Bosnia, Bulgaria, Bồ Đào Nha, Catalan, Cebuano, Chichewa, Corsi, Creole (Haiti), Croatia, Do Thái, Estonia, Filipino, Frisia, Gael Scotland, Galicia, George, Gujarat, Hausa, Hawaii, Hindi, Hmong, Hungary, Hy Lạp, Hà Lan, Hà Lan (Nam Phi), Hàn, Iceland, Igbo, Ireland, Java, Kannada, Kazakh, Khmer, Kinyarwanda, Klingon, Kurd, Kyrgyz, Latinh, Latvia, Litva, Luxembourg, Lào, Macedonia, Malagasy, Malayalam, Malta, Maori, Marathi, Myanmar, Mã Lai, Mông Cổ, Na Uy, Nepal, Nga, Nhật, Odia (Oriya), Pashto, Pháp, Phát hiện ngôn ngữ, Phần Lan, Punjab, Quốc tế ngữ, Rumani, Samoa, Serbia, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenia, Somali, Sunda, Swahili, Séc, Tajik, Tamil, Tatar, Telugu, Thái, Thổ Nhĩ Kỳ, Thụy Điển, Tiếng Indonesia, Tiếng Ý, Trung, Trung (Phồn thể), Turkmen, Tây Ban Nha, Ukraina, Urdu, Uyghur, Uzbek, Việt, Xứ Wales, Yiddish, Yoruba, Zulu, Đan Mạch, Đức, Ả Rập, dịch ngôn ngữ.

Copyright ©2024 I Love Translation. All reserved.

E-mail: