码迷,mamicode.com
首页 >  
搜索关键字:Network    ( 11507个结果
多个router和多个network
一般搭建成功了opentack后,都会按照文档的这样创建网络 Scenario 1: one tenant, two networks, one router Scenario 2: two tenants, two networks, two routers 然而neutron号称软件定义网络,可...
分类:Web程序   时间:2014-07-16 22:55:19    阅读次数:223
Ubuntu之网络配置
一、配置大概分三类:通过配置文件配置、通过命令配置、通过图形化的网络连接菜单配置。拨号无线等的没条件实验,不涉及。主要文件:/etc/network/interfaces,这里是IP、网关、掩码等的一些配置;/etc/resolv.conf这个文件保存DNS的有关信息主要命令:sudo /etc/i...
分类:其他好文   时间:2014-07-16 20:44:05    阅读次数:176
6lowpan 学习资料链接
深入浅出6lowpan了解http://blog.csdn.net/rizejin/article/details/55485206lowpan network discoveryhttp://tools.ietf.org/html/rfc6775嗯,后面再补充
分类:其他好文   时间:2014-07-16 19:53:56    阅读次数:173
Python发一个GET请求
# -*- coding: utf-8 -*-try: import httplib2except ImportError: print('错误:') print(' httplib2这个库没有找到,程序无法继续运行!') exit(255) def network_get_proc(se...
分类:编程语言   时间:2014-07-16 19:34:14    阅读次数:267
虚拟机移动后重启网络时提示Device does not seem to be present
Wmware虚拟机硬盘文件位置移动之后,重新引入到Wmware workStation中, 通过命令ifconfig...没有看到eth0.。然后重启网卡 #service network restart 又报下面错误。故障现象: service network restart Shutting d...
分类:移动开发   时间:2014-07-13 11:51:51    阅读次数:180
POJ 1459 Power Network
题意:有n个据点,np个发电机,nc个用户,m条电线,给出发电机,用户,电线的电流限制,求最大网络电流。 这是带节点的网络流,其实和原来没什么区别,只要在前后都增加一个据点,在这里我加了0和n+1两个节点,而发电机节点的电流限制可以 转化为0->节点的电流限制,用户节点电流的限制可以转化为节点->n+1的电流限制,之后套用最大网络流模板即可,这里我写了,Edmonds_karp算法。 稍后传...
分类:Web程序   时间:2014-07-12 23:35:08    阅读次数:277
poj 2236 Wireless Network 并查集
#include #include #include #define maxn 1220double x[maxn],y[maxn],d;bool vis[maxn];int p[maxn];int n;double dist(int i,int j){ return fabs( (x[i]-...
分类:Web程序   时间:2014-07-12 14:36:39    阅读次数:224
poj2531Network Saboteur
题目链接: 点我点我 题目: Network Saboteur Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 8959   Accepted: 4190 Description A university network is composed...
分类:Web程序   时间:2014-07-10 22:26:23    阅读次数:387
poj3134 Command Network --- 最小树形图
新单词unidirectional get T T 求有向图上,以某点为根的,最小生成树 参考别人的模板 #include #include #include #include #include #include #include #define inf 2000000000 using namespace std; struct node1 { double x,...
分类:Web程序   时间:2014-07-10 20:32:47    阅读次数:285
bond双网卡绑定
centos双网卡绑定在/etc/sysconfig/network-scripts/目录下建立ifcfg-bond0文件,文件内容如下:DEVICE=bond0USERCTL=noBOOTPROTO=noneONBOOT=yesIPADDR=192.168.100.17NETMASK=255.255.255.0GATEWAY=192.168.100.1TYPE=UnKnownBONDING_OPTS="miimon=80mode=0"绑定mode为0,是r..
分类:其他好文   时间:2014-07-10 18:14:20    阅读次数:200
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!