|
16.
|
|
|
Determining your network hardware
|
|
|
|
Bepalen van uw netwerk apparatuur
|
|
Translated by
wouter.vandenneucker
|
|
Reviewed by
Redmar
|
|
|
|
Located in
network/C/network.xml:56(title)
|
|
17.
|
|
|
If you are having issues connecting to your network or the Internet, the first thing you need to do is locate the model of the network device you are using. To do so, unfortunately you will have to use the command line at this time. To get to the command line in Kubuntu, press <keycombo><keycap>Alt</keycap><keycap>Space</keycap></keycombo>. This will open up a pop-up called <application>Katapult</application>. Enter the word <userinput>konsole</userinput> and press <keycap>Enter</keycap>. You will notice that once <application>Konsole</application> opens, you will see something similar to <prompt>username@hostname:~$</prompt>. Here you will type <userinput>lspci</userinput> and press <keycap>Enter</keycap>. Locate your network hardware information, you will need this for the upcoming sections, especially for wireless cards.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
network/C/network.xml:65(para)
|
|
18.
|
|
|
Common network settings
|
|
|
|
Algemene netwerkinstellingen
|
|
Translated by
gsmx
|
|
Reviewed by
Redmar
|
|
|
|
Located in
network/C/network.xml:77(title)
|
|
19.
|
|
|
A majority of connection settings can be changed from within the <guilabel>Network Settings</guilabel> section of System Settings. To access the Network Settings, go to <menuchoice><guimenu>KMenu</guimenu><guimenuitem>System Settings</guimenuitem></menuchoice> and then select <guilabel>Network Settings</guilabel> at the lower left of the window.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
network/C/network.xml:87(para)
|
|
20.
|
|
|
No matter the connection you are using, the network settings will usually be configured the same. Most users are probably familiar with Windows networking and seeing terms such as <acronym>IP</acronym> address, gateway address, netmask address, and <acronym>DNS</acronym> addresses. They are still the same in Kubuntu however there are two extra settings that are common with Linux systems, network address and broadcast address however these extra settings are not necessary for basic home networking and connecting to the Internet.
|
|
|
|
Het doet er niet toe welke connectie u gebruikt, de netwerkinstellingen zullen meestal op de zelfde manier ingesteld worden. De meeste gebruikers zijn waarschijnlijk vertrouwd met netwerken in Windows en met termen als <acronym>IP</acronym>-adres, gateway-adres, netmask-adres en <acronym>DNS</acronym>-adressen. Die zijn nog steeds hetzelfde in Kubuntu, maar er zijn ook twee extra instellingen die gebruikelijk zijn bij Linux systemen: Netwerk-adres en uitzend(broadcast)-adres. Deze extra instellingen zijn niet nodig voor een eenvoudig thuisnetwerk en verbindingen met het internet.
|
|
Translated and reviewed by
Redmar
|
|
|
|
Located in
network/C/network.xml:91(para)
|
|
21.
|
|
|
Please select from the following to get a brief introduction to each settings. <placeholder-1/>
|
|
|
|
Kies een van de volgende instellingen voor een korte introductie. <placeholder-1/>
|
|
Translated and reviewed by
Redmar
|
|
|
|
Located in
network/C/network.xml:101(para)
|
|
22.
|
|
|
Kubuntu Network Interface Setting
|
|
|
|
Kubuntu netwerkinterface instellingen
|
|
Translated and reviewed by
Redmar
|
|
|
|
Located in
network/C/network.xml:116(title)
|
|
23.
|
|
|
# eth0 is set to automatically receive its address (DHCP)
auto eth0
iface eth0 inet dhcp
# eth1 is setting its own address (static)
auto eth1
iface eth1 inet static
address 192.168.1.100
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.0.255
gateway 192.168.1.1
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
represents a space character.
Enter a space in the equivalent position in the translation.
|
|
|
|
# eth0 is ingesteld om automatisch een IP adres te ontvangen (DHCP)
auto eth0
iface eth0 inet dhcp
# eth1 gebruikt een vast IP adres (statisch)
auto eth1
iface eth1 inet static
address 192.168.1.100
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.0.255
gateway 192.168.1.1
|
|
Translated by
fromthehill
|
|
Reviewed by
Redmar
|
|
|
|
Located in
network/C/network.xml:117(programlisting)
|
|
24.
|
|
|
<acronym>IP</acronym> Address
|
|
|
|
<acronym>IP</acronym>-adres
|
|
Translated and reviewed by
Redmar
|
|
|
|
Located in
network/C/network.xml:136(title)
|
|
25.
|
|
|
An <acronym>IP</acronym> address is a unique identifier, commonly known as the computer's address, that is used in communicating between other computers on a network and the Internet. There are two versions of <acronym>IP</acronym> addressing, <acronym>IPv4</acronym> which is the most widely used and the oldest, and <acronym>IPv6</acronym> which is newer. <acronym>IPv6</acronym> was created to cure the fact the world was running out of <acronym>IP</acronym> addresses.
|
|
|
|
Een <acronym>IP</acronym> adres is een uniek herkenningsnummer, over het algemeen meer bekend als het adres van de computer, dat wordt gebruikt in de communicatie tussen verschillende computers binnen een netwerk en met het internet. Er zijn twee versies van <acronym>IP</acronym>-adressering, <acronym>IPv4</acronym> die het meest gebruikt wordt en het oudste is, en <acronym>IPv6</acronym> die nieuwer is. <acronym>IPv6</acronym> is ontwikkeld om het feit te verhelpen dat de wereld niet genoeg <acronym>IP</acronym>-adressen meer had.
|
|
Translated and reviewed by
Redmar
|
|
|
|
Located in
network/C/network.xml:138(para)
|