Ajout des tp
This commit is contained in:
@@ -12,3 +12,4 @@ BEGIN
|
|||||||
SELECT p.prix_unitaire*lc.p_quantite into v_prix_total FROM Produit p, Ligne_commande lc WHERE p.id=p_produit_id
|
SELECT p.prix_unitaire*lc.p_quantite into v_prix_total FROM Produit p, Ligne_commande lc WHERE p.id=p_produit_id
|
||||||
INSERT INTO Ligne_commande values (seq_t.NEXT, p_commande_id,
|
INSERT INTO Ligne_commande values (seq_t.NEXT, p_commande_id,
|
||||||
p_produit_id, p_quantite,v_prix_total)
|
p_produit_id, p_quantite,v_prix_total)
|
||||||
|
END;
|
||||||
|
|||||||
26
TP_BD/fichiereponsetp3.sql
Normal file
26
TP_BD/fichiereponsetp3.sql
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
--sqlplus "val@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(Host=lorien.arda.lan)(Port=1521))(CONNECT_DATA=(SID=ORCLIUT)))"
|
||||||
|
|
||||||
|
1. CREATE OR REPLACE PROCEDURE sp_DateDernierAchat(Nom_Produit VARCHAR)
|
||||||
|
IS
|
||||||
|
v_date_recent DATE;
|
||||||
|
BEGIN
|
||||||
|
Select MAX(date_achat) INTO v_date_recent FROM Commande c JOIN ligne_commande lc ON c.id=lc.commande_id JOIN Produit p ON lc.produit_id=p.id where p.nom_produit=Nom_Produit;
|
||||||
|
DBMS_OUTPUT.PUT_LINE('le produit '||Nom_Produit||' a pour dernière '||v_date_recent);
|
||||||
|
END sp_DateDernierAchat;
|
||||||
|
|
||||||
|
2. ALTER TABLE Produit add quantite_en_stock number DEFAULT 10;
|
||||||
|
|
||||||
|
3. CREATE OR REPLACE TRIGGER trg_GestionStock
|
||||||
|
BEFORE INSERT
|
||||||
|
ON ligne_commande lc
|
||||||
|
FOR EACH ROW
|
||||||
|
v_quantite number;
|
||||||
|
BEGIN
|
||||||
|
SELECT quantite_en_stock into v_quantite from Produit p where p.id=ligne_commande.produit
|
||||||
|
IF:new.quantite<=v_quantite
|
||||||
|
UDAPTE Produit p
|
||||||
|
p_commande_id
|
||||||
|
SET
|
||||||
|
--WHEN (new.quatite<=quantite_en_stock)
|
||||||
|
|
||||||
|
|
||||||
Binary file not shown.
@@ -10,7 +10,7 @@ public static void main (String[] args) {
|
|||||||
AfficherTouslesArgs(args);
|
AfficherTouslesArgs(args);
|
||||||
AfficherLes5erArgs(args);
|
AfficherLes5erArgs(args);
|
||||||
trierEtAfficherNaturel(args);
|
trierEtAfficherNaturel(args);
|
||||||
trierEtAffiicherSansCasse(args);
|
trierEtAffiicher(args);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -54,14 +54,14 @@ System.out.println("Tri naturel" + NaturelTriage);
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void trierEtAffiicherSansCasse(String[] args){
|
public static void trierEtAffiicher(String[] args){
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
String[] copyArgument = Arrays.copyOf(args, args.length);
|
String[] copyArgument = Arrays.copyOf(args, args.length);
|
||||||
Arrays.sort(copyArgument,String::compareToIgnoreCase); // Comparator.nullsLast(String::compareToIgnoreCase);
|
Arrays.sort(copyArgument,Comparator.nullsLast(String::compareTo)); //Comparator.nullsLast(String::compareTo); String::compareToIgnoreCase
|
||||||
String Sanscassetriernickelchrome = Arrays.toString(copyArgument);
|
String Sanscassetriernickelchrome = Arrays.toString(copyArgument);
|
||||||
System.out.println("Tri sans casse naturel : "+ sanscassetriernickelchrome);
|
System.out.println("Tri sans casse naturel : "+ Sanscassetriernickelchrome);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
73
TP_DEV3.2/Repertoires.java
Normal file
73
TP_DEV3.2/Repertoires.java
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
import java.io.File;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
public class Repertoires {
|
||||||
|
|
||||||
|
|
||||||
|
String name;
|
||||||
|
List<Node> children = new ArrayList<>();
|
||||||
|
|
||||||
|
public Node(String name){
|
||||||
|
|
||||||
|
this.name=name;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public addChild(Node child){
|
||||||
|
|
||||||
|
children.add(child);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public afficher(String nom){
|
||||||
|
|
||||||
|
System.out.println(nom+name);
|
||||||
|
|
||||||
|
for(Node c : children){
|
||||||
|
|
||||||
|
c.print(nom+"");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
public static Node build(File f){
|
||||||
|
|
||||||
|
Node n = new Node(file.getName());
|
||||||
|
File[] list = f.listFiles();
|
||||||
|
if(list!=null){
|
||||||
|
|
||||||
|
for(File child : list){
|
||||||
|
|
||||||
|
n.addChild(build(child));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return n;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
|
||||||
|
File fichier = New File(args[0]);
|
||||||
|
Node tree = build(Dictionnaire);
|
||||||
|
|
||||||
|
tree.afficher("");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
70
TP_DEV4.1/TP1/Ex1/Exo1S2.js
Normal file
70
TP_DEV4.1/TP1/Ex1/Exo1S2.js
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
let customers = [
|
||||||
|
{
|
||||||
|
'id': 1,
|
||||||
|
'f_name': 'Abby',
|
||||||
|
'l_name': 'Thomas',
|
||||||
|
'gender': 'M',
|
||||||
|
'married': true,
|
||||||
|
'age': 32,
|
||||||
|
'expense': 500,
|
||||||
|
'purchased': ['Shampoo', 'Toys', 'Book']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'id': 2,
|
||||||
|
'f_name': 'Jerry',
|
||||||
|
'l_name': 'Tom',
|
||||||
|
'gender': 'M',
|
||||||
|
'married': true,
|
||||||
|
'age': 64,
|
||||||
|
'expense': 100,
|
||||||
|
'purchased': ['Stick', 'Blade']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'id': 3,
|
||||||
|
'f_name': 'Dianna',
|
||||||
|
'l_name': 'Cherry',
|
||||||
|
'gender': 'F',
|
||||||
|
'married': true,
|
||||||
|
'age': 22,
|
||||||
|
'expense': 1500,
|
||||||
|
'purchased': ['Lipstik', 'Nail Polish', 'Bag', 'Book']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'id': 4,
|
||||||
|
'f_name': 'Dev',
|
||||||
|
'l_name': 'Currian',
|
||||||
|
'gender': 'M',
|
||||||
|
'married': true,
|
||||||
|
'age': 82,
|
||||||
|
'expense': 90,
|
||||||
|
'purchased': ['Book']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'id': 5,
|
||||||
|
'f_name': 'Maria',
|
||||||
|
'l_name': 'Gomes',
|
||||||
|
'gender': 'F',
|
||||||
|
'married': false,
|
||||||
|
'age': 7,
|
||||||
|
'expense': 300,
|
||||||
|
'purchased': ['Toys']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'id': 6,
|
||||||
|
'f_name': 'Homer',
|
||||||
|
'l_name': 'Simpson',
|
||||||
|
'gender': 'M',
|
||||||
|
'married': true,
|
||||||
|
'age': 39,
|
||||||
|
'expense': 500,
|
||||||
|
'purchased': ['Book']
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
console.log("donnée");
|
||||||
|
console.table(customers);
|
||||||
|
|
||||||
|
const table_seniors = customers.filter(customer=>customers.age>=60);
|
||||||
|
console.log("Donnée seniors :",table_seniors);
|
||||||
13
TP_DEV4.1/TP1/Ex1/index.html
Normal file
13
TP_DEV4.1/TP1/Ex1/index.html
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Index.html</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script src="Exo1S2.js"></script>
|
||||||
|
<p>This ia my first page.</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
64
TP_DEV4.1/TP2MVC/controller.js
Normal file
64
TP_DEV4.1/TP2MVC/controller.js
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
class Controller {
|
||||||
|
constructor(model, view) {
|
||||||
|
|
||||||
|
this.model = model;
|
||||||
|
this.view = view;
|
||||||
|
this.filter = "all";
|
||||||
|
|
||||||
|
/** Abonnements à la vue **/
|
||||||
|
|
||||||
|
this.view.bindAddTodo(this.addTodo.bind(this));
|
||||||
|
this.view.bindDeleteTodo(this.deleteTodo.bind(this));
|
||||||
|
this.view.bindToggleTodo(this.toggleTodo.bind(this));
|
||||||
|
this.view.bindEditTodo(this.editTodo.bind(this));
|
||||||
|
|
||||||
|
/** filtrages par url **/
|
||||||
|
|
||||||
|
this.routes = ['all','active','done'];
|
||||||
|
|
||||||
|
/** Routage **/
|
||||||
|
window.addEventListener("load",this.routeChanged.bind(this));
|
||||||
|
window.addEventListener("hashchange",this.routeChanged.bind(this));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
routeChanged(){
|
||||||
|
let route = window.location.hash.replace(/^#\//,'');
|
||||||
|
this.filter = this.routes.find( r => r === route) || 'all';
|
||||||
|
this.filterTodoList();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
filterTodoList () {
|
||||||
|
let todos = this.model.getTodos(this.filter)
|
||||||
|
this.view.renderTodoList(todos)
|
||||||
|
this.view.setFilterTabs(this.filter)
|
||||||
|
}
|
||||||
|
|
||||||
|
addTodo(text) {
|
||||||
|
this.model.add(text)
|
||||||
|
this.filterTodoList()
|
||||||
|
}
|
||||||
|
|
||||||
|
deleteTodo(id) {
|
||||||
|
this.model.delete(parseInt(id))
|
||||||
|
this.filterTodoList()
|
||||||
|
}
|
||||||
|
|
||||||
|
toggleTodo(id) {
|
||||||
|
this.model.toggle(parseInt(id))
|
||||||
|
this.filterTodoList()
|
||||||
|
}
|
||||||
|
|
||||||
|
editTodo(id, text) {
|
||||||
|
this.model.edit(parseInt(id),text)
|
||||||
|
this.filterTodoList()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const model = new Model()
|
||||||
|
const view = new View()
|
||||||
|
const app = new Controller(model, view)
|
||||||
|
|
||||||
53
TP_DEV4.1/TP2MVC/index.html
Normal file
53
TP_DEV4.1/TP2MVC/index.html
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
|
||||||
|
<title>Todo</title>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.classless.min.css"
|
||||||
|
>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css" integrity="sha512-q3eWabyZPc1XTCmF+8/LuE1ozpg5xxn7iO89yfSOd5/oKvyqLngoNGsx8jq92Y8eXJ/IRxQbEC+FGSYxtk2oiw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||||||
|
<link rel="stylesheet" href="./css/style.css">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<h1>To Do List</h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<article>
|
||||||
|
<header>
|
||||||
|
<form id='add_form'>
|
||||||
|
<fieldset role="group">
|
||||||
|
<input id="input_todo" type="text" placeholder="Buy milk and eggs...">
|
||||||
|
<button><i class="fas fa-plus"></i></button>
|
||||||
|
</fieldset>
|
||||||
|
<div>
|
||||||
|
<span>
|
||||||
|
<a id="active" href="#/active"><i class="far fa-circle"></i></a>
|
||||||
|
<a id="done" href="#/done"><i class="fas fa-circle"></i></a>
|
||||||
|
<a id="all" href="#/all"><i class="fas fa-adjust"></i></a>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<small><span id="count">0</span>/50 characters</small>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
<!-- Render todos -->
|
||||||
|
<ul id="todos_list" class="todolist"></ul>
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
<script src="js/model.js"></script>
|
||||||
|
<script src="js/view.js"></script>
|
||||||
|
<script src="js/controller.js"></script>
|
||||||
|
|
||||||
|
</html>
|
||||||
48
TP_DEV4.1/TP2MVC/model.js
Normal file
48
TP_DEV4.1/TP2MVC/model.js
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
class Model {
|
||||||
|
constructor() {
|
||||||
|
this.todos = JSON.parse(localStorage.getItem('todos')) || []
|
||||||
|
}
|
||||||
|
|
||||||
|
#commit(todos) {
|
||||||
|
localStorage.setItem('todos', JSON.stringify(todos))
|
||||||
|
}
|
||||||
|
|
||||||
|
getTodos(filter){
|
||||||
|
if (filter === "active")
|
||||||
|
return this.todos.filter(todo => !todo.done)
|
||||||
|
if (filter === "done")
|
||||||
|
return this.todos.filter(todo => todo.done)
|
||||||
|
|
||||||
|
return this.todos
|
||||||
|
}
|
||||||
|
|
||||||
|
add(todoText) {
|
||||||
|
const todo = {
|
||||||
|
id: this.todos.length > 0 ? this.todos[this.todos.length - 1].id + 1 : 1,
|
||||||
|
text: todoText,
|
||||||
|
done : false,
|
||||||
|
}
|
||||||
|
this.todos.push(todo)
|
||||||
|
this.#commit(this.todos)
|
||||||
|
}
|
||||||
|
|
||||||
|
edit(id, updatedText) {
|
||||||
|
this.todos = this.todos.map(todo =>
|
||||||
|
todo.id === id ? { id: todo.id, text: updatedText, done: todo.done} : todo
|
||||||
|
)
|
||||||
|
this.#commit(this.todos)
|
||||||
|
}
|
||||||
|
|
||||||
|
delete(id) {
|
||||||
|
this.todos = this.todos.filter(todo => todo.id !== id)
|
||||||
|
this.#commit(this.todos)
|
||||||
|
}
|
||||||
|
|
||||||
|
toggle(id) {
|
||||||
|
this.todos = this.todos.map(todo =>
|
||||||
|
todo.id === id ? { id: todo.id, text: todo.text, done: !todo.done } : todo
|
||||||
|
)
|
||||||
|
this.#commit(this.todos)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
63
TP_DEV4.1/TP2MVC/style.css
Normal file
63
TP_DEV4.1/TP2MVC/style.css
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
:focus-visible {outline:none;}
|
||||||
|
|
||||||
|
.is-active {
|
||||||
|
color : #8EB901;
|
||||||
|
}
|
||||||
|
|
||||||
|
#add_form > div {
|
||||||
|
display : flex;
|
||||||
|
justify-content:space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.todo {
|
||||||
|
display : flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.todo checkbox,.todo i {
|
||||||
|
flex-grow : 0;
|
||||||
|
flex-shrink : 0;
|
||||||
|
flex-basis : auto;
|
||||||
|
}
|
||||||
|
.todo span {
|
||||||
|
flex-grow : 1;
|
||||||
|
flex-shrink : 1;
|
||||||
|
flex-basis : auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.todolist {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.todolist li {
|
||||||
|
list-style: none;
|
||||||
|
padding: var(--pico-form-element-spacing-vertical) 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
#todos_filter {
|
||||||
|
display:flex;
|
||||||
|
justify-content : center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#todos_filter a {
|
||||||
|
margin:1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.todolist i {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.todolist li:not(:last-child) {
|
||||||
|
border-bottom: 1.5px solid var(--pico-form-element-border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.todolist > li > label:has(input:checked) {
|
||||||
|
text-decoration: line-through;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
BIN
TP_DEV4.1/TP2MVC/todo.png
Normal file
BIN
TP_DEV4.1/TP2MVC/todo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
100
TP_DEV4.1/TP2MVC/view.js
Normal file
100
TP_DEV4.1/TP2MVC/view.js
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
class View {
|
||||||
|
charLimit = 70;
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
this.form = document.querySelector("#add_form")
|
||||||
|
this.input = document.querySelector("#input_todo")
|
||||||
|
this.list = document.querySelector("#todos_list")
|
||||||
|
this.tabs = document.querySelectorAll("#add_form span a")
|
||||||
|
this.loader = document.querySelector("#loader")
|
||||||
|
this.count = document.querySelector("#count")
|
||||||
|
|
||||||
|
|
||||||
|
this.input.addEventListener("input", (e) => {
|
||||||
|
if (e.target.value.length >= this.charLimit) {
|
||||||
|
e.target.value = e.target.value.substring(0,this.charLimit);
|
||||||
|
}
|
||||||
|
count.textContent = e.target.value.length;
|
||||||
|
});
|
||||||
|
count.nextSibling.textContent = `/${this.charLimit} characters`
|
||||||
|
}
|
||||||
|
|
||||||
|
#getTodo() {
|
||||||
|
return this.input.value
|
||||||
|
}
|
||||||
|
|
||||||
|
#resetInput() {
|
||||||
|
this.input.value = ''
|
||||||
|
count.textContent = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
#createNewTodoElement(todo){
|
||||||
|
let li = document.createElement("li")
|
||||||
|
li.classList.add("todo");
|
||||||
|
li.dataset.id = todo.id;
|
||||||
|
|
||||||
|
let label = document.createElement("label");
|
||||||
|
|
||||||
|
let checkbox = document.createElement("input");
|
||||||
|
|
||||||
|
checkbox.type = "checkbox";
|
||||||
|
checkbox.checked = todo.done;
|
||||||
|
|
||||||
|
let span = document.createElement("span");
|
||||||
|
|
||||||
|
span.textContent = todo.text;
|
||||||
|
|
||||||
|
let trash = document.createElement("i");
|
||||||
|
trash.classList.add("fas","fa-trash");
|
||||||
|
label.append(checkbox, span);
|
||||||
|
label.append(label, trash);
|
||||||
|
return li
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
setFilterTabs(filter){
|
||||||
|
this.tabs.forEach( tab => {
|
||||||
|
if (filter === tab.id)
|
||||||
|
tab.classList.add("is-active")
|
||||||
|
else
|
||||||
|
tab.classList.remove("is-active")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
renderTodoList(todos) {
|
||||||
|
let list = new DocumentFragment()
|
||||||
|
for (let todo of todos){
|
||||||
|
list.appendChild(this.#createNewTodoElement(todo))
|
||||||
|
}
|
||||||
|
this.list.replaceChildren(list)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/** Abonnements événements **/
|
||||||
|
|
||||||
|
bindAddTodo(handler) {
|
||||||
|
this.form.addEventListener("submit", (e=>{
|
||||||
|
e.preventDefault()
|
||||||
|
let text = this.#getTodo()
|
||||||
|
handler(text)
|
||||||
|
this.#resetInput()
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bindDeleteTodo(handler) {
|
||||||
|
this.form.addEventListener("click", (e=>{
|
||||||
|
|
||||||
|
let id = li.dataset.
|
||||||
|
}
|
||||||
|
|
||||||
|
bindEditTodo(handler) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
bindToggleTodo(handler) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
}
|
||||||
9
TP_DEV4.2/Dockerfile
Normal file
9
TP_DEV4.2/Dockerfile
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
FROM gcc:14
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY main.c .
|
||||||
|
|
||||||
|
RUN gcc main.c -o app
|
||||||
|
|
||||||
|
CMD ["./app"]
|
||||||
6
TP_DEV4.2/main.c
Normal file
6
TP_DEV4.2/main.c
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
printf("Hello depuis un container Docker (C)!\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -35,7 +35,7 @@ node n1 {
|
|||||||
ip address 127.0.0.1/8
|
ip address 127.0.0.1/8
|
||||||
ipv6 address ::1/128
|
ipv6 address ::1/128
|
||||||
!
|
!
|
||||||
ip route 0.0.0.0/0 172.16.2.0
|
ip route 0.0.0.0/0 172.16.2.254
|
||||||
!
|
!
|
||||||
}
|
}
|
||||||
canvas c0
|
canvas c0
|
||||||
@@ -222,7 +222,7 @@ node n9 {
|
|||||||
ip address 127.0.0.1/8
|
ip address 127.0.0.1/8
|
||||||
ipv6 address ::1/128
|
ipv6 address ::1/128
|
||||||
!
|
!
|
||||||
ip route 37.37.36.0/22 37.37.37.254
|
ip route 0.0.0.0/0 37.37.37.254
|
||||||
!
|
!
|
||||||
}
|
}
|
||||||
canvas c0
|
canvas c0
|
||||||
@@ -260,6 +260,8 @@ node n10 {
|
|||||||
ip address 127.0.0.1/8
|
ip address 127.0.0.1/8
|
||||||
ipv6 address ::1/128
|
ipv6 address ::1/128
|
||||||
!
|
!
|
||||||
|
ip route 45.45.45.0/21 45.45.45.254
|
||||||
|
!
|
||||||
}
|
}
|
||||||
auto_default_routes enabled
|
auto_default_routes enabled
|
||||||
canvas c0
|
canvas c0
|
||||||
@@ -282,6 +284,8 @@ node n11 {
|
|||||||
ip address 127.0.0.1/8
|
ip address 127.0.0.1/8
|
||||||
ipv6 address ::1/128
|
ipv6 address ::1/128
|
||||||
!
|
!
|
||||||
|
ip route 45.45.45.0/21 45.45.45.254
|
||||||
|
!
|
||||||
}
|
}
|
||||||
auto_default_routes enabled
|
auto_default_routes enabled
|
||||||
canvas c0
|
canvas c0
|
||||||
|
|||||||
549
TP_SCR3.2/TP02/yolou-3-tp02.imn
Normal file
549
TP_SCR3.2/TP02/yolou-3-tp02.imn
Normal file
File diff suppressed because it is too large
Load Diff
524
TP_SCR3.2/TP02/yolou-3-tp02note.imn
Normal file
524
TP_SCR3.2/TP02/yolou-3-tp02note.imn
Normal file
File diff suppressed because it is too large
Load Diff
68
TP_SCR3.2/TP03/TP03-reponses.txt
Normal file
68
TP_SCR3.2/TP03/TP03-reponses.txt
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
Tp03-
|
||||||
|
|
||||||
|
I-
|
||||||
|
|
||||||
|
4.touch /var/lib/dhcp/dhcpd.leases
|
||||||
|
|
||||||
|
5. /etc/init.d/isc-dhcp-server start on le lance sur DHCPsrv
|
||||||
|
|
||||||
|
7. Le numéro de port est le :67 et son nom est :bootps
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
II-
|
||||||
|
dans le dhcp on met: 172.16.2.0/24 192.168.10.254
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
1- host GW-eth0{
|
||||||
|
hardware ethernet 42:00:aa:00:00:02;
|
||||||
|
fixed-address 172.16.2.254;
|
||||||
|
}
|
||||||
|
|
||||||
|
host GW-eth1{
|
||||||
|
hardware ethernet 42:00:aa:00:00:04;
|
||||||
|
fixed-address 192.168.10.254;
|
||||||
|
}
|
||||||
|
|
||||||
|
2-
|
||||||
|
subnet 172.16.2.0 netmask 255.255.255.0 {
|
||||||
|
range 172.16.2.1 172.16.2.254;
|
||||||
|
// option routers 172.16.2.1;
|
||||||
|
option subnet-mask 255.255.255.0;
|
||||||
|
option broadcast-address 172.16.2.255;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
3 et 4- sur GW:
|
||||||
|
|
||||||
|
root@GW:/# dhcrelay -d 192.168.10.10
|
||||||
|
Internet Systems Consortium DHCP Relay Agent 4.3.5
|
||||||
|
Copyright 2004-2016 Internet Systems Consortium.
|
||||||
|
All rights reserved.
|
||||||
|
For info, please visit https://www.isc.org/software/dhcp/
|
||||||
|
Listening on LPF/eth1/42:00:aa:00:00:04
|
||||||
|
Sending on LPF/eth1/42:00:aa:00:00:04
|
||||||
|
Listening on LPF/eth0/42:00:aa:00:00:02
|
||||||
|
Sending on LPF/eth0/42:00:aa:00:00:02
|
||||||
|
Sending on Socket/fallback
|
||||||
|
Forwarded BOOTREQUEST for 42:00:aa:00:00:06 to 192.168.10.10
|
||||||
|
|
||||||
|
|
||||||
|
sur pc2-2 :
|
||||||
|
|
||||||
|
root@pc2-2:/# dhclient -r eth0
|
||||||
|
root@pc2-2:/# dhclient eth0
|
||||||
|
|
||||||
|
a) Le mac qui apparait est celui du client pc2-2 (42:00:aa:00:00:06)
|
||||||
|
|
||||||
|
b) L'adresse est 172.16.2.254 (c'est celle de l'interface eth1 de GW sur le réseau 172.16.2.0/24 )
|
||||||
|
|
||||||
|
5) Le serveur reçoit des doublons car les requete dhcp sont des broadcasts, le gw peut relayer depuis plusieurs interfaces ce qui crée des double relay.
|
||||||
|
|
||||||
|
6) DHCPDISCOVER,DHCPREQUEST
|
||||||
|
|
||||||
|
7) dhcrelay -d -i eth1 192.168.10.10 (l'option -i eth1 demande à GW de ne pas remettre un message déjà traité)
|
||||||
|
|
||||||
|
8) plus de doublon, un seul discover, un seul request, fonctionnement normal
|
||||||
@@ -69,8 +69,9 @@ node n3 {
|
|||||||
ip address 127.0.0.1/8
|
ip address 127.0.0.1/8
|
||||||
ipv6 address ::1/128
|
ipv6 address ::1/128
|
||||||
!
|
!
|
||||||
|
ip route 172.16.2.0/24 192.168.10.254
|
||||||
|
!
|
||||||
}
|
}
|
||||||
auto_default_routes enabled
|
|
||||||
canvas c0
|
canvas c0
|
||||||
iconcoords {72 96}
|
iconcoords {72 96}
|
||||||
labelcoords {72 132}
|
labelcoords {72 132}
|
||||||
|
|||||||
24
TP_SCR3.2/TP03/dhcpd.conf
Normal file
24
TP_SCR3.2/TP03/dhcpd.conf
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
default-lease-time 600;
|
||||||
|
max-lease-time 7200;
|
||||||
|
|
||||||
|
option rfc-3442-classless-static-routes code 121 = array of integer 8;
|
||||||
|
|
||||||
|
subnet 192.168.0.0 netmask 255.255.240.0 {
|
||||||
|
range 192.168.10.20 192.168.10.40;
|
||||||
|
option rfc-3442-classless-static-routes 24,172,16,2,192,168,10,254;
|
||||||
|
}
|
||||||
|
|
||||||
|
host GW-eth0{
|
||||||
|
hardware ethernet 42:00:aa:00:00:02;
|
||||||
|
fixed-address 172.16.2.254;
|
||||||
|
}
|
||||||
|
|
||||||
|
host GW-eth1{
|
||||||
|
hardware ethernet 42:00:aa:00:00:04;
|
||||||
|
fixed-address 192.168.10.254;
|
||||||
|
}
|
||||||
|
|
||||||
|
subnet 172.16.2.0 netmask 255.255.255.0 {
|
||||||
|
range 172.16.2.20 172.16.2.254;
|
||||||
|
}
|
||||||
|
|
||||||
5
TP_SCR3.2/TP03/isc-dhcp-server
Normal file
5
TP_SCR3.2/TP03/isc-dhcp-server
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
|
||||||
|
#dans /etc/default/isc-dhcp-server
|
||||||
|
|
||||||
|
INTERFACESv4="eth0"
|
||||||
|
#INTERFACESv6=""
|
||||||
Reference in New Issue
Block a user