Enable
config terminal
this can be abriviated toconfig t
vlan xx
This can be any number, its easier to start from 10- OPTIONAL:
name class
Gives the VLAN a name, you don't have to do this but is handy when viewing VLAN information
Application layer
Users / Apps that interface with the userPresentation layer
Handles everything to do with file's / file extentions. Example: PNG, JPG, GIFSeesion layer
Deals with portsTransport layer
UDP / TCP comes into play hereNetwork layer
This is the layer where stuff gets sent out to the internet. Routers live on layer 3Data link layer
This is the layer where switches live, MAC addreses get assigned here.Phisical Layer
Everything that connects a device to the network, think of wifi signals, ethernet cables. Everything
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sparky Marky Episode 1: 0xD6F3627878856980DF2868BF62734AFB0E975E27B2C0015DE97B8732A0176223 | |
Sparky Marky Episode 2: 0x6425CEC4B6BBAB0C513B7174B4005B2E45E3496F16D619933AA95A6FFAC5EBBE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from peewee import * | |
db = SqliteDatabase("database.db", pragmas={"foreign_keys": 1}) | |
class MySQLModel(Model): | |
class Meta: | |
database = db | |
class Files(MySQLModel): | |
path = TextField() |