trunk

Configure TeamCity to build from SVN trunk, branches and/or tags

六月ゝ 毕业季﹏ 提交于 2019-11-28 18:40:05
问题 How can I configure TeamCity to build from SVN trunk and also from different branches and/or tags ? Our idea is to have multiple builds from the same project, this way we can have the current version that is in production (with the ability to make deploys and fixes over that "release tag") and at the same time have the trunk and branches with the actual development that is taking place daily. We have our policies, owner and all that for our SVN directories, the problem that we have is how to

What is trunk, branch and tag in Subversion? [duplicate]

若如初见. 提交于 2019-11-28 14:57:19
Possible Duplicate: What do “branch”, “tag” and “trunk” really mean? What is a trunk, branch and tag in Subversion and what are the best practices to use them? What tools can I use for Subversion in Visual Studio 2008 ? David Schmitt The trunk is the main line of development in a SVN repository. A branch is a side-line of development created to make larger, experimental or disrupting work without annoying users of the trunk version. Also, branches can be used to create development lines for multiple versions of the same product, like having a place to backport bugfixes into a stable release.

VLAN基础(二)在GNS3 1.3.10中使用Trunk完成跨交换机的VLAN通信

梦想与她 提交于 2019-11-28 07:35:52
VLAN基础(二)在GNS3 1.3.10中使用Trunk完成跨交换机的VLAN通信 简介: Trunk在网络用语中一般译为:“主干线、中继线、长途线” ,不过一般不用译意,直接使用英文。在路由/交换网络中,trunk通常被称为“中继(透传)”。在语音级应用的线路中,trunk一般指“主干网络、电话干线”,即两个交换局或交换机之间的连接电路或信道,它为两端设备之间进行转接,作为信令和终端设备数据的传输链路。 实际操作: 1.添加好所需设备,并对两个路由器进行设置,具体设置请看VLAN基础(一) 2.使用连接功能,将各个设备连接起来,连接时需要注意接口 3.将接口显示出来,并将每台设备的配置标记在它旁边 4.点击开启按钮,开启所有设备 5.双击sw1进入sw1仿真面板,先进入全局模式,关闭路由功能,然后新建两个vlan,检查是否添加成功,结果显示添加成功 进入全局模式:conf t 关闭路由功能:no ip routing 新建vlan:vlan 10,20 退出:exit 查看所有vlan:do show vlan-switch brief 6.分别进入接口F1/0、F1/1,将接口模式均设为access,然后分别加入vlan10、vlan20,并检查是否设置成功 进入F1/0接口:int f1/0 设置接口模式:switchport mode access 添加到vlan10

SVN分支与主干合并

亡梦爱人 提交于 2019-11-28 07:07:12
1、主干合并到分支 1在本地trunk中先update一下,有冲突的解决冲突,保证trunk和repository已经完全同步, 2.在/branches /MyProject上右键,依次选择”TortoiseSVN” -> “Merge…”, 3.在弹出的窗口中选择第一项”Merge a range of revision”,这个类型的Merge适用于将某个分支或主线上提交的多个revision间的变化合并到另外一个分支上。 4.点击next 这里的”URL to merge from”应该填trunk的路径,理解为 “从主干合并“ 到分支,”Revision range to merge”就是要将trunk的哪些revision所对应的变化合并到branch中 5.点击next: 在这里只需保留默认设置即可。 在点击Merge按钮前你可以先Test merge一下,进行测试。 点击Merge按钮后trunk所做的修改将同步到branch中。 至此,branch 已经完全和 trunk 同步,合并发生在本地 working copy,只要你不提交就不会影响到 repository。 所以我们和合并操作后,处理好冲突(如果存在冲突)后,将代码提交到 repository。 2、分支合并到主干 和 “分支合并到主干”基本 一样,需要注意第2步和第4步 2.在/trunk

eNSP——配置Trunk接口

感情迁移 提交于 2019-11-28 02:13:48
原理: 在以太网中,通过划分 VLAN 来隔离广播域和增强网络通信的安全性。以太网通常由多台交换机组成,为了使 VLAN 的数据帧跨越多台交换机传递,交换机之间互连的链路需要设置为干道链路 ( Trunk link)。和接入链路不同, 干道链路是用来在不同的设备之间(如交换机和路由器之间、交换机和交换机之间)承载多个不同 VLAN 数据的,它不属于任何一个具体的 VLAN ,可以承载所有的 VLAN 数据,也可以配置为只能传输指定 VLAN 的数据。 Trunk 端口一般用于交换机之间连接的端口, Trunk 端口可以属于多个 VLAN ,可以接收和发送多个 VLAN 的报文。当 Trunk 端口收到数据帧时,如果该帧不包含 802 . 1Q 的 VLAN 标签, 将打上该 Trunk 端日的 PVID :如果该帧包含 802 . 1Q 的 VLAN 标签,则不改变。当 Trunk 端口发送数据帧时,当该所发送帧的 VLAN ID与端口的 PVID 不同时.检查是否允许 VLAN 通过,若允许的话直接透传,不允许就直接丢弃;当该帧的 VLAN ID 与端口的 PVID 相同时,则剥离 VLAN 标签后转发。 例子:   公司里的员工很多,放置了S1,S2交换机负责网络接入。S1,S2通过汇聚交换机接入,划分vlan隔离广播域。为了保证不同交换机下的相同部门能够通信

iOS pod私有库创建和升级

穿精又带淫゛_ 提交于 2019-11-28 00:52:08
今天尝试了一下封装pod私有库,步骤其实蛮简单 创建私有库 1. 先在github上创建一个自己的公开的仓库(记得添加MIT LICENSE) 2. 克隆仓库到本地 3. 创建.podspec文件 pod spec create +名称(和仓库名称一致) pod spec create YFToolKit 4. 配置.podspec s.name = "YFToolKit" s.version = "0.0.1" s.summary = "我的自定义库 YFToolKit." s.description = <<-DESC 我的自定义库,目前是测试版,里面啥都没有! DESC s.homepage = "https://github.com/TsingYii/YFToolKit" s.license = "MIT" s.author = { "yufang" => "yufang93@qq.com" } s.platform = :ios, "8.0" s.source = { :git => "https://github.com/TsingYii/YFToolKit.git", :tag => "#{s.version}" } s.source_files = "Classes", "Classes/**/*.{h,m}" s.framework = "UIKit",

cisco路由器&三层交换机简单环境配置实例

≡放荡痞女 提交于 2019-11-27 21:17:41
一、网络拓扑图: 二、配置命令: 1、路由器的配置: interface FastEthernet0/0 ip address 10.66.88.222 255.255.255.0 ip nat outside duplex auto speed auto interface FastEthernet0/1 ip address 192.168.1.1 255.255.255.0 ip nat inside duplex auto speed auto interface Vlan1 no ip address shutdown ip nat inside source list 1 interface FastEthernet0/0 overload ip classless ip route 192.168.2.0 255.255.255.0 192.168.1.222 ip route 192.168.3.0 255.255.255.0 192.168.1.222 access-list 1 permit 192.168.0.0 0.0.255.255 三、三层交换机的配置: hostname L3-SW ip dhcp pool vlan2pool network 192.168.3.0 255.255.255.0 default-router 192.168.3.1

实验一:VLAN创建

a 夏天 提交于 2019-11-27 19:38:41
先创建两个交换机,左边交换机机连接四个PC,右边交换机机连接两个PC,再启动全部设备。接着给每个PC分别配上IPV4地址和掩码地址。然后先打开左边交换机的启动命令行终端。创建vlan 10和vlan 20,之后再用interface gi进入接口。 将PC3和PC4配置为vlan10,PC5和6配置为vlan20。 右边交换机也同样创建vlan 10和vlan 2。接着用interface gi进入接口,再将PC7配置为vlan10,PC8配置为vlan20。 最后再把两个交换机都用trunk模式。 左边交换机: system-view sysname r1 vlan 10 vlan 20 interface gi 1/0/1 port link-type access port access vlan 10 interface gi 1/0/2 port link-type access port access vlan 10 interface gi 1/0/3 port link-type access port access vlan 20 interface gi 1/0/4 port link-type access port access vlan 20 quit interface gi 1/0/48 port link-type trunk port trunk

vlan的创建

戏子无情 提交于 2019-11-27 19:37:51
先把每个主机上配置ip地址和掩码地址,然后在交换机上创建vlan 10和vlan 20,之后用interface gi进入接口 把主机1和2配置为vlan10,主机3和4配置为vlan20。之后在交换机r2上创建vlan 10和vlan 20,之后用interface gi进入接口 把主机1配置为vlan10,主机2配置为vlan20。之后再把两个交换机都用trunk模式。 第一个交换机: sys sysname r1 vlan 10 vlan 20 interface gi 1/0/1 port link-type access port access vlan 10 interface gi 1/0/2 port link-type access port access vlan 10 interface gi 1/0/3 port link-type access port access vlan 20 interface gi 1/0/4 port link-type access port access vlan 20 quit interface gi 1/0/48 port link-type trunk port trunk permit vlan 10 20 第二个交换机: sys sysname r2 vlan 10 vlan 20 interface gi 1

H3C的vlan间路由

二次信任 提交于 2019-11-27 19:20:47
模型: 交换机的配置: [SW1]vlan 10 [SW1-vlan10]vlan 20  创建vlan 10和vlan 20 [SW1-GigabitEthernet1/0/2]port link-type access [SW1-GigabitEthernet1/0/2]port access vlan 10  端口配置到vlan 10 [SW1]int gi 1/0/3 [SW1-GigabitEthernet1/0/3]port link-type access [SW1-GigabitEthernet1/0/3]port access vlan 20  端口配置到vlan 20 接入路由的端口配置:trunk [SW1]int gi 1/0/1 [SW1-GigabitEthernet1/0/1]port link-type trunk [SW1-GigabitEthernet1/0/1]port trunk permit vlan 10 20  端口模式为trunk,配置到vlan 10和vlan 20 路由器的配置: 与交换机相接的端口需要配置子端口 [R1]int gi 0/0 [R1-GigabitEthernet0/0]undo shutdown  确认端口开启 [R1]int gi 0/0.10  进入子端口 [R1-GigabitEthernet0/0.10