Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NetworkAndCo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hugo Lacherez
NetworkAndCo
Commits
058b5aa2
Commit
058b5aa2
authored
2 years ago
by
Al Massati Bilal
Browse files
Options
Downloads
Patches
Plain Diff
v1 18/11
parent
5d2fffd7
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
procedure-dhcp.md
+84
-0
84 additions, 0 deletions
procedure-dhcp.md
procedure.md
+15
-11
15 additions, 11 deletions
procedure.md
with
99 additions
and
11 deletions
procedure-dhcp.md
0 → 100644
+
84
−
0
View file @
058b5aa2
# DHCP
## Installation dhcp
apt-get instal isc-dhcp-server
---------
### Configuration dhcpd.conf
#### atteindre fichier de configuration :
cd /etc/dhcp
nano dhcpd.conf
#### dhcpd.conf :
# dhcpd.conf
option domain-name "networkandco.org";
default-lease-time 600;
max-lease-time 7200;
allow booting;
allow bootp;
ddns-update-style none;
server-identifier 192.168.40.150;
authoritative;
ddns-update-style interim;
#VLAN 2
subnet 192.168.40.0 netmask 255.255.255.0 {
range dynamic-bootp 192.168.40.20 192.168.40.100;
option routers 192.168.40.254;
option subnet-mask 255.255.255.0;
option domain-name "networkandco.org";
option domain-name-servers 192.168.40.151;
}
#VLAN 3
subnet 192.168.50.0 netmask 255.255.255.0 {
range dynamic-bootp 192.168.50.20 192.168.50.100;
option routers 192.168.50.254;
option subnet-mask 255.255.255.0;
option domain-name "networkandco.org";
}
#VLAN 4
subnet 192.168.60.0 netmask 255.255.255.0 {
range dynamic-bootp 192.168.60.20 192.168.60.100;
option routers 192.168.60.254;
option subnet-mask 255.255.255.0;
option domain-name "networkandco.org";
option domain-name-servers 192.168.40.151;
}
--------
key "dhcp-update-key" {
algorithm hmac-md5;
secret "7R1U767pLKhR+O/0hF11TfeNmoVpVU+lfLnL3GhvWpI=";
}
zone networkandco.org {
primary 192.168.40.151;
key "dhcp-update-key";
}
zone 40.168.192.in-addr-arpa {
primary 192.168.40.151;
key "rndc-key";
}
### TIPS !
Ne pas oublier chmod sur les fichiers config dhcp/dns
\ No newline at end of file
This diff is collapsed.
Click to expand it.
procedure.md
+
15
−
11
View file @
058b5aa2
...
...
@@ -10,7 +10,7 @@ Switch 2 ( interface GE 0/0 ) à Routeur 2 ( interface GE 0/0 )
## Switch
## Switch
:
...
...
@@ -18,7 +18,12 @@ Switching (Version : Switch 2960) :
Nommer switch
hostname S1
hostname S1Adressage VLAN: //à faire pour chaque VLAN(exemple VLAN 3 ci-dessous) :
conf t
(config)interface vlan 3
(conf-if)ip address 192.168.50.3 255.255.255.0
exit
Sécurisé avec mot de passe sur switch :
...
...
@@ -31,7 +36,12 @@ Création VLAN 2:
(config)vlan 2
(config-vlan)name Admin
exit
Adressage VLAN: //à faire pour chaque VLAN(exemple VLAN 3 ci-dessous) :
conf t
(config)interface vlan 3
(conf-if)ip address 192.168.50.3 255.255.255.0
exit
Création VLAN 3:
(config) vlan 3
...
...
@@ -60,7 +70,7 @@ Organisation interface vlan 3 :
(config-vlan)interface range fa 0/1 - 12
(config-if-range)switchport acces vlan 3
exit
conf t
Organisation interface vlan 4 :
conf t
...
...
@@ -74,10 +84,10 @@ Configuration trunk inter-vlan :
conf t
(config)interface fa 0/48 1 (Interface GE 0/0) à Routeur
(config-if) switchport mode trunk
(config-if)no shutdown
conf t
(config-if)no shutdown
exit
hostname R1
## Routeur :
Creation sous-interface VLAN 2 (ROUTEUR)
...
...
@@ -111,12 +121,6 @@ Creation sous-interface VLAN 4 (ROUTEUR)
(config-if)no shutdown
exit
Adressage VLAN: //à faire pour chaque VLAN(exemple VLAN 3 ci-dessous) :
conf t
(config)interface vlan 3
(conf-if)ip address 192.168.50.3 255.255.255.0
exit
Activation interface
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment