trunk

SVN Application

此生再无相见时 提交于 2020-01-01 12:04:18
一、SVN客户端:TortoiseSvn 下载地址: http://tortoisesvn.net/downloads.html 安装完后重启, 右击就可以使用SVN命令 首先, 从服务器版本库那边 svn Checkout....代码, 放到本地 在checkout目录下(带有.svn文件夹), 主要有以下命令: 常用的 SVN Add... Delete... Rename... Update to revision.... Revert Get lock/Releae lock... 本地Update 出服务器上最新代码 add/delete/edit/rename file 都只是在本地做修改, 要执行 commit 操作才能提交到服务器上。 二、SVN服务器:Subversion 1、安装 下载地址: http://www.visualsvn.com/ 个人认为最好用VisualSVN server服务端和TortoiseSVN客户端搭配使用 安装完成后, 点击Window->VisualSVN->VisualSVN Server Manager, 就可以直接使用应用管理器来操作SVN 库 2、SVN 仓库 在Repositories可以CreateNewRepository,新建新的库, 选择库的结构如下: 1)、三个子目录的区别: tag,一般情况下,

Bzr: Create a shared repository from an existing stand-alone repository

拜拜、爱过 提交于 2020-01-01 09:37:26
问题 I have been using Bzr for version control of my project over the last few months. I am the sole developer, and currently I just have everything in a single local project directory, to which I commit and which I sync to DriveHQ. I now have some large-scale experiments in mind which would likely break this main line, so I've been looking into the concepts of branches and shared repositories. So my question is, basically: how should I go about creating a new, shared repository from this already

不同vlan之间的相互访问

混江龙づ霸主 提交于 2019-12-31 09:08:12
拓扑图: 用到的命令: 给端口的vlan <sw1>用户模式 切换到系统模式 system-view 交换机名称 sysname swj1 创建vlan 3 端口模式选择int g0/0/3 电脑必须access Port link-type access 把端口放进vlan Port default vlan 3 port GigabitEthernet 0/0/1 俩交换机之间的vlan 进入链接交换机的端口Int g0/0/2 给端口设置trunk Port link-type trunk 设置在这个端口上能通过的vlan Port trunk allow-pass vlan 3 给端口设置ip 进入:vlan Int vlan 3 给vlan设置ip:Ip address 192.168.3.1 24或255.255.255.0 step:主机配置c1,c2,c3,c4 step2配置交换机SW1端口   (1)把LSW1的端口g0/0/2设置成access 放进vlan3里      (2)把LSW1的端口g0/0/1设置成access 放进vlan4里         (3) 给vlan3和vlan4设置网关         (4)把LSW1的端口g0/0/1设置成trunk 让vlan3和vlan4通过    Setp3配置交换机SW2端口 步骤跟Setp2一样   

华为交换机VRRP 综合配置示例

落爺英雄遲暮 提交于 2019-12-26 23:53:21
组网需求: 楼层1和楼层2分别通过两条线路做冗余接入交换机(本示例只考虑vrrp,暂不考虑其他方面)。当其中一段链路故障时,能通过另外一条链路传输。 配置信息: <lsw9>dis cu # sysname lsw9 # vlan batch 10 20 # stp mode stp # interface Ethernet0/0/2 port link-type access port default vlan 10 # interface Ethernet0/0/3 port link-type access port default vlan 20 # interface GigabitEthernet0/0/1 port link-type trunk port trunk allow-pass vlan 10 20 # interface GigabitEthernet0/0/2 port link-type trunk port trunk allow-pass vlan 10 20 stp instance 0 cost 200000000 # return <lsw9> -------------------------- <lsw11>dis cu # sysname lsw11 # vlan batch 30 # stp mode stp # interface

SIP Trunk / SIP 中继服务

风流意气都作罢 提交于 2019-12-25 16:01:35
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> CTS SIP Trunk/SIP中继可以让你现有的IPPBX连接到CTS的平台从而使用VOIP外线落地。享受拨打全国统一资费0.09元,多路中继号码,可接听电话。如果你已经有了IPPBX系统,使用CTS SIP Trunk企业级VOIP中继/SIP中继话务服务,可以让你在外呼电话时节省更多的钱 ,让您的VOIP系统对内对外都实现真正的 Over IP。使用CTS SIP Trunk/SIP中继无需硬件语音板卡,无需电话线路,只需一条网线,架设从内部分机到外呼电话的完全 VOIP 系统。不限企业地域,全国均可使用。如需办理请电话咨询:4008290998. 备注:使用CTS SIP Trunk服务,几乎任何的现有IPPBX均可以直接配置使用,无需任何硬件设备, 仅需支持SIP协议即可。例如:FreePBX,Asterisk,FreeSwitch,Trixbox,PBX IN A Flash,Elastix,3CX,AVAYA,Lync等等。 来源: oschina 链接: https://my.oschina.net/u/1452491/blog/200550

Eclipse project with Subclipse: Introduce trunk and branches

人盡茶涼 提交于 2019-12-23 16:40:56
问题 I have a project in my workspace (without trunk and branches) and need to create a copy of the current release for providing bug fixes for this release while working on a new feature, as described here: http://nedbatchelder.com/text/quicksvnbranch.html. What is the recommended way of doing this without affecting repository's main structure and the checked out projects on the machines of other developers? 回答1: If you did not establish some structure when you created your repository you cannot

VTP管理交换机的VLAN配置

▼魔方 西西 提交于 2019-12-23 01:41:32
实验要求:将Switch1设置为VTPserver、Switch2设置为VTPtransparent、Swtich3和4设置为VTPclient 拓扑如下: 涉及内容: 1.VTP的创建 2.VTP的三种工作模式 3.端口的trunk模式配置 配置如下: Switch1 enable  进入特权模式 configure terminal  进入全局模式 vtp domain test  创建vtp域 vtp mode server  设置当前交换机身份为server interface f0//1  进入端口 switchport mode trunk  将端口修改为trunk模式 vlan 10  创建vlan10,用于测试 vlan 20  创建vlan20,用于测试 Switch2 enable  进入特权模式 configure terminal  进入全局模式 vtp mode transparent  设置当前交换机身份为transparent interface range f0/1-2  进入端口 switchport mode trunk  将端口修改为trunk模式 Switch3 enable  进入特权模式 configure terminal  进入全局模式 vtp mode client  设置当前交换机身份为client interface range

Linux实现VLAN

别等时光非礼了梦想. 提交于 2019-12-20 09:02:00
Linux实现的IEEE 802.1Q VLAN 原文:http://blog.csdn.net/dog250/article/details/7354590 第一部分:VLAN的核心概念 说起IEEE 802.1q,都知道是VLAN,说起VLAN,基本上也没有盲区,网络基础。然而说到配置,基本所有人都能顺口溜一样说出Cisco或者H3C设备的配置命令,对于Linux的VLAN配置却存在大量的疑问。这些疑问之所以存在我觉得有两点原因: 1.对VLAN的本质还是没有理解。 不管你的Cisco/H3C命令敲得再熟练,如果看不懂Linux的vconfig,那么也将无法掩饰你对概念理解的浅显; 2.对Linux实现虚拟网络设备风格不熟悉 可能你已经十分理解802.1q了,也许还看过了IEEE的文档,然而却对Linux的Bridge,tap,bond等虚拟设备不是很理解,那么也将无法顺利配置VLAN。 对于VLAN概念的理解,有几点要强调: 1.VLAN分离了广播域; 2.单独的一个VLAN模拟了一个常规的交换以太网,因此VLAN将一个物理交换机分割成了一个或多个逻辑交换机; 3.不同VLAN之间通信需要三层参与; 4.当多台交换机级联时,VLAN通过VID来识别,该ID插入到标准的以太帧中,被称作tag; 5.大多数的tag都不是端到端的,一般在上行路上第一个VLAN交换机打tag

native vlan(本征VLAN)

别等时光非礼了梦想. 提交于 2019-12-18 18:44:55
其实就是不打tag的VLAN,因为你想,一个VLAN在经过交换设备老是打tag,然后再脱掉tag。。。这个很浪费计算资源,尤其是在转发的报文量相当大的时候。 如何解决: 可以定义一种vlan,也就是在众多的vlan中指定一种vlan,当然一般是指定那个报文量大的vlan,作为 native vlan。 如上图所以,将两个交换机的一个端口都指定为native vlan 10 ,也就是当没有tag的报文,从该端口出去时,他不会打tag ,会被默认指定为vlan 10。当接收到一个没有打tag的报文时,会认为它是vlan 10的报文 PC1和PC2能通信么,(这里PC1与PC2在同一网段内哈)? 首先答案是肯定的。 来分析下这个过程,当PC1发报文到 左边的转发设备,由于入端口是Trunk Native 10,本征VLAN,当该转发设备收到该报文时,以为是VLAN 10的报文(因为该报文开始没有打tag),转发的时候还是不打tag,但当被配置为Trunk Native 20接收到报文时,因为该报文是被属于vlan 10的,于是会被打上vlan 10的标签再发送(毕竟 本征vlan 端口首先得是Trunk口,且该报文不属于vlan 20)。 然后右边的转发设备收到该打有vlan 10报文时,由于端口是Trunk native 30,因此不处理该报文,然后从access vlan

cocoapods安装速度慢,CDN: trunk Repo update failed等问题

人盡茶涼 提交于 2019-12-18 14:31:10
1、在安装cocoapods时候,pod setup停留的时间太长了,这时候就建议使用国内的景象,速度妥妥的快的不行啊,哈哈哈 我使用的是清华的镜像,详细步骤看这个网址 CocoaPods 镜像使用帮助 2、由于项目是用CocoaPods管理,CocoaPods 1.8将CDN切换为默认的spec repo源,并附带一些增强功能!CDN支持最初是在1.7版本中引入的,最终在1.7.2中完成。 它旨在大大加快初始设置和依赖性分析。 在使用的时候出现 [!] CDN: trunk Repo update failed - 7 error(s): CDN: trunk URL couldn't be downloaded: 按照官方文档 podfile文件中添加source源: source 'https://github.com/CocoaPods/Specs.git' podfile文件中添加source源后, pod install 和 pod update 可以正常操作,但是 pod search 有些库却不正常。 因为我使用的是清华的,所以我这里要写清华提供的方法 source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git' 解决办法: 1. podfile文件中指定source源为master: