-
before deployment, administrator needs to setup
-
enroll baremetal nodes to ironic
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
#!/usr/bin/env sh | |
# | |
# purge.sh - Remove same prefix files but most recent one | |
# Author: Zespre Schmidt <[email protected]> | |
# The MIT License (MIT) | |
# Copyright (c) 2016 ZPCC | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal |
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
unmy_hdr * | |
my_hdr Organization: ZPCC | |
my_hdr X-Homepage: https://blog.zespre.com | |
my_hdr X-PGP-Key: https://www.zespre.com/starbops.asc | |
set from = "[email protected]" | |
set realname = "Zespre Schmidt" | |
#set folder = ~/.mail | |
set spoolfile = "imaps://mail.zespre.com/INBOX" |
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
""" A Testing module for SDN Lab03 | |
Use Mininet as underlying network topology, Floodlight as remote controller. | |
Construct a two-layer tree topology and manually build up switch flow table | |
entries for basic forwarding without Floodlight-provided forwarding module. | |
""" | |
from mininet.net import Mininet | |
from mininet.node import RemoteController | |
from mininet.topolib import TreeTopo |
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
#!/usr/bin/env python | |
from mininet.topo import Topo | |
from mininet.net import Mininet | |
from mininet.node import RemoteController | |
from mininet.link import TCLink | |
from mininet.cli import CLI | |
from mininet.util import dumpNodeConnections | |
from mininet.log import setLogLevel |
-
首先先把 Haskell Platform 裝好 http://www.haskell.org/platform/
-
把這份 script 複製到
/usr/bin
並且執行它 http://www.haskell.org/platform/ghc-clang-wrapper -
接著把 Aquamacs 裝好 http://aquamacs.org/
-
在終端機中醫序輸入下列指令就完成啦
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
#include <linux/module.h> | |
#include <linux/proc_fs.h> | |
extern int flag_ipaddr; | |
static struct proc_dir_entry *ipaddr_file; | |
static int proc_read_ipaddr(char *page, char **start, off_t off, | |
int count, int *eof, void *data) | |
{ | |
printk("flag_ipaddr is %d\n", flag_ipaddr); | |
return 0; | |
} |
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
#include <linux/module.h> | |
#include <linux/proc_fs.h> | |
extern int flag_macaddr; | |
static struct proc_dir_entry *macaddr_file; | |
static int proc_read_macaddr(char *page, char **start, off_t off, | |
int count, int *eof, void *data) | |
{ | |
printk("flag_macaddr is %d\n", flag_macaddr); | |
return 0; | |
} |