Compare commits

...

6 Commits

Author SHA1 Message Date
ludovic diemert
8dde9a9e9f correction du fichier resolv.conf 2021-11-25 15:19:58 +01:00
ludovic diemert
2c6ab59e82 ds ansible (suite) 2021-11-25 15:14:14 +01:00
ludovic diemert
7ecbfcd3e6 2 2021-11-15 17:48:46 +01:00
Ludovic Diemert
a8125f9062 commit 2021-11-15 17:44:50 +01:00
ludo
b82576d49e python2 2021-10-06 09:32:17 +02:00
ludo
1b80141dc4 Python 2021-09-29 11:15:21 +02:00
10 changed files with 227 additions and 0 deletions

View File

@ -0,0 +1,4 @@
search sio.lan
domain sio.lan
nameserver 10.121.38.7
nameserver 10.121.38.8

125
sio2/ct-ansible/sshd_config Normal file
View File

@ -0,0 +1,125 @@
# $OpenBSD: sshd_config,v 1.103 2018/04/09 20:41:22 tj Exp $
# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.
# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options override the
# default value.
Include /etc/ssh/sshd_config.d/*.conf
#Port 22
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::
#HostKey /etc/ssh/ssh_host_rsa_key
#HostKey /etc/ssh/ssh_host_ecdsa_key
#HostKey /etc/ssh/ssh_host_ed25519_key
# Ciphers and keying
#RekeyLimit default none
# Logging
#SyslogFacility AUTH
#LogLevel INFO
# Authentication:
#LoginGraceTime 2m
#PermitRootLogin prohibit-password
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10
#PubkeyAuthentication yes
# Expect .ssh/authorized_keys2 to be disregarded by default in future.
#AuthorizedKeysFile .ssh/authorized_keys .ssh/authorized_keys2
#AuthorizedPrincipalsFile none
#AuthorizedKeysCommand none
#AuthorizedKeysCommandUser nobody
# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
#HostbasedAuthentication no
# Change to yes if you don't trust ~/.ssh/known_hosts for
# HostbasedAuthentication
#IgnoreUserKnownHosts no
# Don't read the user's ~/.rhosts and ~/.shosts files
#IgnoreRhosts yes
# To disable tunneled clear text passwords, change to no here!
#PasswordAuthentication yes
#PermitEmptyPasswords no
# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no
# Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
#KerberosGetAFSToken no
# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes
#GSSAPIStrictAcceptorCheck yes
#GSSAPIKeyExchange no
# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication. Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes
#AllowAgentForwarding yes
#AllowTcpForwarding yes
#GatewayPorts no
X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost yes
#PermitTTY yes
PrintMotd no
#PrintLastLog yes
#TCPKeepAlive yes
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS no
#PidFile /var/run/sshd.pid
#MaxStartups 10:30:100
#PermitTunnel no
#ChrootDirectory none
#VersionAddendum none
# no default banner path
#Banner none
# Allow client to pass locale environment variables
AcceptEnv LANG LC_*
# override default of no subsystems
Subsystem sftp /usr/lib/openssh/sftp-server
# Example of overriding settings on a per-user basis
#Match User anoncvs
# X11Forwarding no
# AllowTcpForwarding no
# PermitTTY no
# ForceCommand cvs server
PermitRootLogin yes
PermitRootLogin prohibit-password

View File

@ -0,0 +1,11 @@
[Interface]
PrivateKey = GIOgHwIs/0uNvwn/iAX5dP5PGjDY7+OpM/c50X6ry2k=
Address = 10.0.2.2/32
#DNS = 192.168.1.254
[Peer]
PublicKey = COah6qTtwZo4h9GhtBHBhySOwmH4g78sI49NLGmze3M=
#AllowedIPs = 10.0.0.0/8, 192.168.1.0/24
AllowedIPs = 0.0.0.0/0
Endpoint = 192.168.0.40:51820
PersistentKeepalive = 20

4
sio2/sisr/20-python/Exercice1 Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/python3
rayon = input('donnez la valeur du rayon : ')
perimetre = 2 * 3.141592 * int(rayon)
print (perimetre, " cm ")

18
sio2/sisr/20-python/Exercice2 Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/python3
tableau = []
for i in range(3)
entier = int(input('chiffre : '))
tableau.append(entier)
moy= sum(tableau)/len(tableau)
def maximum(tableau):
vmax = tableau[0]
def minimum(tableau):
vmax = tableau[0]

13
sio2/sisr/20-python/Exercice3 Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/python3
phrase = input ("Phrase : ")
tabmot = phrase.split(' ')
cptmot = {}
for mot in tabmot :
if mot in tabmot:
cptmot [mot]=cptmot[mot] +1
else:
cptmot[mot]=1
for key in cptmot.keys():
print (key, " ",cptmot[key])

13
sio2/sisr/20-python/cptmot.py Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/python3
phrase = input('Phrase : ')
tabmot = phrase.split(' ')
cptmot = {}
for mot in tabmot :
if mot in cptmot :
cptmot[mot] = cptmot[mot] + 1
else :
cptmot[mot] = 1
for key in cptmot.keys() :
print (key, " ", cptmot[key])

View File

@ -0,0 +1,26 @@
#!/usr/bin/python3
import sys
nbarg = len(sys.arg)
if nbarg !=2
print ("Nombre d'arguments invalides")
exit (1)
filename = sys.arg[1]
try:
fh = open("user.txt", "r")
except:
print ("Fichier user.txt inconnu")
else:
line = fh.readline ()
while line:
nouvline = line.rstrip()
login.nomlong = nouvline.split(':')
print (nbarg)
#useradd (login)
line = fh.readline()
fh.close()

10
sio2/sisr/20-python/log.py Executable file
View File

@ -0,0 +1,10 @@
#!/bin/usr/python3
import re
import sys
group = {}
regexp = '^(\S+) (\S+) (\S+) \[([^]]+)\] "(\w+) (\S+).*" (\d+) (\S+)'
for line in sys.stdin:
line = line.rstrip ( )
match = re.match (regexp, line)
if match:
print (match.group(1)," ",match.group(8))

View File

@ -0,0 +1,3 @@
jdaniel : Jack Daniel
wpeel : William Peel
ngraphaneaud : Noe Graphaneaud