Bilgisayara ilk merhaba demem ilkokul yıllarına dayanır Bilgisayarın bana kalıcı izler bırakacağı o dönemlerde belli olmuştu zaten.Sistem ve Network'un benim hayatımda ayrı biryeri olmuştur.Son 6 senedir Sistem ve Network konusu ile profesyonel olarak ilgilenmekteyim. Devamını Oku...
/etc:
/etc/hosts
- Stores IP addresses and their corresponding hostname plus any aliases.
/etc/hosts.allow and /etc/hosts.deny
- list machines which are allowed or denied use of network services.
/etc/HOSTNAME or /etc/hostname
- contains the hostname for the local system.
/etc/aliases
- used to create mail aliases. Mail for root can be forwarded to another mail account.
/etc/auto.*
- database files for the automounter daemon.
Characteristics of the UNIX filesystem:
- A hierarchical structure
- Consistent treatment of file data
- Protection of file data
Two categories of file data:
- Shareable vs. Unshareable
- Static vs. Variable
Shareable data is that which can be shared between multiple systems.
Example: User Home Directories: /home
Unsharable data is that which is specific to a particular host.
Example: Device lock files. Or even better /etc.
Merhaba;
Windows Server 2008 Core üzerinde Active Directory ve DHCP ‘nin hangi aşamalarda kurulduğunu anlatacağım.Bildiğiniz gibi Server 2008 ‘de olduğu gibi Core edition ‘da herhangibi bir arayüz olmadığından kurulum aşamaları biraz uğraştırıcı olacaktır..
Temel yapılandırma
Öncelikle Windows server 2008 core kurulumu yapılır.TCP/IP konfigurasyonu yapmamız gerekiyor.İlk önce; network interfaceleri görülür.
>netsh interface ipv4 show interfaces
- ip konfigüre edilir.
> netsh interface ipv4 set address name=”2” source=static address=192.168.2.1
mask=255.255.255.0 gateway=<DefaultGateway>”
- dns konfigüre edilir
> netsh interface ipv4 add dnsserver name=”<ID>” address=<DNSIP> index=1
Merhaba;
Bu mini makalemde size Server 2008 Core Edition üzerinde DHCP yapılandırma komutlarını yazacağım;
Ocsetup DHCPServerCore
Dhcp kurulumunu başlatır
sc config dhcpserver start= auto
dhcp servisini otomatiğe alır
net start dhcpserver
servisi başlatır
sc query dhcpserver
servisi kontrol et
netsh dhcp server 192.168.1.11 add scope 192.168.1.0 255.255.255.0 Scope1
192.168.1.0 networkunden ip dağıtacak scope 1 scope adı
netsh dhcp server 192.168.1.11 scope 192.168.1.0 add iprange 192.168.1.11 192.168.1.254
dağıtılacak ip aralığı
netsh dhcp server 192.168.1.10 scope 192.168.1.0 add excluderange 192.168.1.11 192.168.1.25