PDA

View Full Version : New TS2 Variation solution



Nexus
04-23-2018, 04:43 AM
Hi IE Forum,
Based on the EVE-NG I shared in this link below:
**Hidden Content: Check the thread to see hidden data.**

I would like to start a topic and discussing the solution. I will keep updating the solution in the first post.

1- TS2 Variation Set 1 - Thank Robin
**Hidden Content: Check the thread to see hidden data.**

Thanks,
NEXUS

ccipcisco
04-23-2018, 04:49 AM
Thank you Nexus, I just moved from Certcollection to this forum, I hope that we can find the TS2 variation solution soon. now in Certcollection no one want to discuss about the new TS2.

kaka
04-23-2018, 04:54 AM
Thank Nexus for your help.

Robin
04-23-2018, 07:15 AM
This is my solution for TS2 variation set 1, please check it

Ticket 1:
Switch 400 and 401
vlan access-map ATTACK

Ticket 2:
R14
router bgp 65001
neighbor DC1 next-hop-self

cle ip bgp * soft

Ticket 3:
SW 101
interface Ethernet1/2
no ip ospf cost 1

R12, R13
access-list 1 permit 10.1.1.0 0.0.254.255
access-list 2 permit 10.1.0.0 0.0.254.255

cle ip bgp * soft

Ticket 4:
R21
route-map LP permit 10
match ip address prefix-list LP
set local-preference 999

cle ip bgp * soft

Ticket 5:
R1
int l0
ip os 10000 are 0

R3
int e0/1
mpl ip

Ticket 6:
R51, R60
int tun 0
ip os network point-to-multipoint

R14
int tun 0
ip os network point-to-multipoint
no shut

Ticket 7:
R15
router bgp 65001
address-family ipv6
network 2001:CC:1E:8BAD:154::/104

Ticket 8:
SW 300, SW301

interface Vlan2000
ip dhcp relay information trusted

Ticket 9:
R70
int tun 0
tunnel key 10000
shut
no shut

Ticket 10:
R25
no ip nat inside source static tcp 201.99.25.2 23 10.2.200.1 23 extendable
ip nat inside source static tcp 10.2.200.1 23 201.99.25.2 23 extendable
ip nat outside so static 201.99.70.2 200.8.8.8 add-route

Nexus
04-23-2018, 11:53 AM
This is my solution for TS2 variation set 1, please check it

Ticket 1:
Switch 400 and 401
vlan access-map ATTACK

Ticket 2:
R14
router bgp 65001
neighbor DC1 next-hop-self

cle ip bgp * soft

Ticket 3:
SW 101
interface Ethernet1/2
no ip ospf cost 1

R12, R13
access-list 1 permit 10.1.1.0 0.0.254.255
access-list 2 permit 10.1.0.0 0.0.254.255

cle ip bgp * soft

Ticket 4:
R21
route-map LP permit 10
match ip address prefix-list LP
set local-preference 999

cle ip bgp * soft

Ticket 5:
R1
int l0
ip os 10000 are 0

R3
int e0/1
mpl ip

Ticket 6:
R51, R60
int tun 0
ip os network point-to-multipoint

R14
int tun 0
ip os network point-to-multipoint
no shut

Ticket 7:
R15
router bgp 65001
address-family ipv6
network 2001:CC:1E:8BAD:154::/104

Ticket 8:
SW 300, SW301

interface Vlan2000
ip dhcp relay information trusted

Ticket 9:
R70
int tun 0
tunnel key 10000
shut
no shut

Ticket 10:
R25
no ip nat inside source static tcp 201.99.25.2 23 10.2.200.1 23 extendable
ip nat inside source static tcp 10.2.200.1 23 201.99.25.2 23 extendable
ip nat outside so static 201.99.70.2 200.8.8.8 add-route

I tested your solution, and it worked, but in EVE-NG we need to modify MAC address for router to get the IP address from DHCP.

Nobita
04-23-2018, 03:24 PM
Solution for TS2 Variation set 2 (5 tickets)
Ticket-1- [Layer2]
=============
User4 can ping and Trace on [10.4.40.40]
1-Fix DHCP pool on R40&R41 for User4
2-Fix EC between SW410,SW400,SW401
3-Fix ACL 100 on SW400&SW401

SW400&SW401::
-----------------
ip access-list ex 100
no 20 permit udp 10.4.0.0 0.0.255.255 host 224.0.0.102 eq 1985
20 deny udp 10.4.0.0 0.0.255.255 host 224.0.0.102 eq 1985

==============================
Ticket-2- [BGP1]
=============
Server1 can Trace on [8.8.8.8] through R15 not 14 with 3 Hops not 2
1-Fix DHCP pool on SW111 for Server1
2-ON R14 increase the ospf cost to 100 and back to default ospf cost on SW111 as the following.

R14:
------
int ran e0/1 -2
ip ospf cost 100

SW111:
--------
int e1/2
no ip ospf cost

==============================
Ticket-3- [BGP2]
=============
SW110 trace on 10.2.200.254 in DC2 and must go through R12-R22[EVEN]
SW110 trace on 10.2.201.254 in DC2 and must go through R13-R23[ODD]
SW210 trace on 10.1.200.254 in DC2 and must go through R22-R12[EVEN]
SW210 trace on 10.1.201.254 in DC2 and must go through R23-R13[ODD]
1-Fix ACL on R12&R13&R22
R12&R13::
----------
access-list 1 permit 10.1.1.0 0.0.254.255
access-list 2 permit 10.1.0.0 0.0.254.255

R22::
----------
access-list 1 permit 10.2.1.0 0.0.254.255
access-list 2 permit 10.2.0.0 0.0.254.255

2-On R23 change the PID of int e0/2 from 65001 to 65002
R23::
------
int e0/2
ip ospf 65002 area 0

==============================
Ticket-4- [BGP3]
=============
Server2 can Trace on [10.4.100.1] through R21 not R20
1-Fix DHCP pool on SW210 for Server2
2-We must back to default the ip ospf cost under SW201of int e0/0

SW201:
---------
int e0/0
no ip ospf cost

==============================
Ticket-5- [DMVPN]
=============
On R60 must show the routes the below:
#show ip route ospf
O 10.100.0.1/32 [110/1000] via 10.100.0.1, 00:00:28, Tunnel0
O 10.100.0.51/32 [110/2000] via 10.100.0.1, 00:00:28, Tunnel0

Under int Tunnel0 of R60 must change the ospf area from 1 to 0

R60:
-----
int tunn 0
ip ospf 65006 a 0
==============================

CiscoCCDE
04-24-2018, 01:36 AM
thank for sharing, Please share the solution for other set also.

ccierscisco
04-24-2018, 03:43 AM
this is old variation

Nexus
04-24-2018, 04:47 PM
this is old variation

That is not old variation, many guys reported to get this version.

switching
04-25-2018, 05:12 PM
That is not old variation, many guys reported to get this version.

Please update the solution for TS2 new variation.

abanalaccie
05-12-2018, 04:31 AM
That is not old variation, many guys reported to get this version.

Hi thanks for the post! There is also other feedbacks about this new ts and they told about bgp prebast cost community configured on ticket 5 and also a bgp listen command that allows only 5 neighbors
Do we have other update on this ?

Nexus
05-12-2018, 04:46 AM
Hi thanks for the post! There is also other feedbacks about this new ts and they told about bgp prebast cost community configured on ticket 5 and also a bgp listen command that allows only 5 neighbors
Do we have other update on this ?

Did you finish all the TS2 with 8 sets? if you did not do it, do it right now you will understand.

abanalaccie
05-12-2018, 08:31 AM
Did you finish all the TS2 with 8 sets? if you did not do it, do it right now you will understand.

i do some of them before doing my 2 attempts but not the variations because they are new. can you share the wbook associate with TS2 if you had it please?

Nexus
05-12-2018, 12:17 PM
i do some of them before doing my 2 attempts but not the variations because they are new. can you share the wbook associate with TS2 if you had it please?

You did not finish all Tshoot file I shared, that is why you need a wb and solution.

abanalaccie
05-12-2018, 04:27 PM
You did not finish all Tshoot file I shared, that is why you need a wb and solution.

i don't need the solution just the questions actually! anyway i will test what you share already, thks!

Dave
05-14-2018, 10:39 PM
Nexus, thanks for the share!
I've finished all the variations that you provided. There are no "bgp prebast cost community" and "bgp listen command" issues there.

cciestudy2018
05-15-2018, 01:20 PM
Nexus, thanks for the share!
I've finished all the variations that you provided. There are no "bgp prebast cost community" and "bgp listen command" issues there.

True...labs good for practice, but these are not new variation(s).

abanalaccie
05-23-2018, 11:47 AM
Hi all,

do we have more info about ts2 new faults ?

caca
06-01-2018, 10:09 PM
Thanks!!! where are the newones?

caca
06-01-2018, 10:10 PM
I neeed theeemM!!!!!

caca
06-01-2018, 10:11 PM
Pleeeeeaseeee NO ONE????

caca
06-01-2018, 10:11 PM
really??? I need the new one!!!!

caca
06-01-2018, 10:12 PM
Do you have them?? pleaseeeee

caca
06-01-2018, 10:13 PM
How can I see it???

hainhtet
06-16-2018, 03:00 PM
New one? please

raptoriks
08-25-2018, 05:59 PM
Hi ccipcisco

There still some discussions on certcollection but most of the people who passed the exam are not going to web-site anymore
It was a wave during 4-5 months and now is quiet again

mamlo
09-01-2018, 04:21 AM
Solution for TS2 Variation set 2 (5 tickets)
Ticket-1- [Layer2]
=============
User4 can ping and Trace on [10.4.40.40]
1-Fix DHCP pool on R40&R41 for User4
2-Fix EC between SW410,SW400,SW401
3-Fix ACL 100 on SW400&SW401

SW400&SW401::
-----------------
ip access-list ex 100
no 20 permit udp 10.4.0.0 0.0.255.255 host 224.0.0.102 eq 1985
20 deny udp 10.4.0.0 0.0.255.255 host 224.0.0.102 eq 1985

==============================
Ticket-2- [BGP1]
=============
Server1 can Trace on [8.8.8.8] through R15 not 14 with 3 Hops not 2
1-Fix DHCP pool on SW111 for Server1
2-ON R14 increase the ospf cost to 100 and back to default ospf cost on SW111 as the following.

R14:
------
int ran e0/1 -2
ip ospf cost 100

SW111:
--------
int e1/2
no ip ospf cost

==============================
Ticket-3- [BGP2]
=============
SW110 trace on 10.2.200.254 in DC2 and must go through R12-R22[EVEN]
SW110 trace on 10.2.201.254 in DC2 and must go through R13-R23[ODD]
SW210 trace on 10.1.200.254 in DC2 and must go through R22-R12[EVEN]
SW210 trace on 10.1.201.254 in DC2 and must go through R23-R13[ODD]
1-Fix ACL on R12&R13&R22
R12&R13::
----------
access-list 1 permit 10.1.1.0 0.0.254.255
access-list 2 permit 10.1.0.0 0.0.254.255

R22::
----------
access-list 1 permit 10.2.1.0 0.0.254.255
access-list 2 permit 10.2.0.0 0.0.254.255

2-On R23 change the PID of int e0/2 from 65001 to 65002
R23::
------
int e0/2
ip ospf 65002 area 0

==============================
Ticket-4- [BGP3]
=============
Server2 can Trace on [10.4.100.1] through R21 not R20
1-Fix DHCP pool on SW210 for Server2
2-We must back to default the ip ospf cost under SW201of int e0/0

SW201:
---------
int e0/0
no ip ospf cost

==============================
Ticket-5- [DMVPN]
=============
On R60 must show the routes the below:
#show ip route ospf
O 10.100.0.1/32 [110/1000] via 10.100.0.1, 00:00:28, Tunnel0
O 10.100.0.51/32 [110/2000] via 10.100.0.1, 00:00:28, Tunnel0

Under int Tunnel0 of R60 must change the ospf area from 1 to 0

R60:
-----
int tunn 0
ip ospf 65006 a 0
==============================

Y it is only 5 tickets?

mamlo
09-01-2018, 05:08 AM
C4C has Tshoot 2 variation for 400$ but not sure it is new

jeffval8
09-01-2018, 02:56 PM
thank you for the information.

nowever
09-02-2018, 02:27 AM
C4C has Tshoot 2 variation for 400$ but not sure it is new

My friend joined C4C, they had 3 version TS2 variation, but they called it: TS2 BT3, not TS2 variation. I think 400 USD for all material right?

mamlo
09-02-2018, 06:18 AM
My friend joined C4C, they had 3 version TS2 variation, but they called it: TS2 BT3, not TS2 variation. I think 400 USD for all material right?

I dont know but please ask him if BT3 is last update for Tshoot 2

mamlo
09-02-2018, 10:20 AM
as i chat with C4C they sell everything in 400$, they say it is valid and latest version. Please let me know if anyone interested to buy in in a group. then we can share it here.

honotoko
09-02-2018, 02:10 PM
as i chat with C4C they sell everything in 400$, they say it is valid and latest version. Please let me know if anyone interested to buy in in a group. then we can share it here.

I woul like to join with you, but how we can crack C4C's EVE-NG, it is a great tool, please check that link

https://mega.nz/#!W7ITyK7S!8ZOCZAKROj4_1T3UCZv2ZsR4IGZRmwBBJV4lEQL hUIw

One guy in form mentioned and ask IE Admin to crack but not get the information right now.

honotoko
09-02-2018, 02:14 PM
I failed my exam last month, I will take the exam soon, I think we should have a group skype and we can help each other.

mamlo
09-03-2018, 03:12 AM
I have will hack it, I have don it before. Please PM me if u are interested.

mamlo
09-03-2018, 03:13 AM
witch combination of lab did you received in your exam? u can join us to buy material for your next attempt.

mamlo
09-03-2018, 03:14 AM
I have will hack it, I have don it before. Please PM me if u are interested.

witch combination of lab did you received in your exam? u can join us to buy material for your next attempt.

mamlo
09-03-2018, 03:15 AM
I failed my exam last month, I will take the exam soon, I think we should have a group skype and we can help each other.

witch combination of lab did you received in your exam? u can join us to buy material for your next attempt.

mamlo
09-03-2018, 03:17 AM
@admin
Please help me to make a GB it will be for benefit of all. Thank u

honotoko
09-03-2018, 03:54 AM
witch combination of lab did you received in your exam? u can join us to buy material for your next attempt.

That is the link I reported in our Forum.

http://iecollection.net/Forums/showthread.php?159-Failed-my-exam-yesterday

if you can crack EVE-NG from C4C, please do it after that I will share and join with you to buy material.

mamlo
09-03-2018, 10:17 AM
That is the link I reported in our Forum.

http://iecollection.net/Forums/showthread.php?159-Failed-my-exam-yesterday

if you can crack EVE-NG from C4C, please do it after that I will share and join with you to buy material.

I already have all C4C material, but it is 3 moths old, it is already cracked, in this GB we will have BH3 and updates if available. my skype is tatar.the.black.2017.
contact me if really interested.

Nexus
09-07-2018, 12:39 PM
I already have all C4C material, but it is 3 moths old, it is already cracked, in this GB we will have BH3 and updates if available. my skype is tatar.the.black.2017.
contact me if really interested.

3 months old, it means you got an old solution. Our team try to crack C4C's EVE-NG but not succeed.

mamlo
09-08-2018, 11:51 AM
3 months old, it means you got an old solution. Our team try to crack C4C's EVE-NG but not succeed.

EVE-NG is already available in this blog for download, Just import lab in it, or even just add new config to routers.

Nexus
09-09-2018, 04:55 AM
EVE-NG is already available in this blog for download, Just import lab in it, or even just add new config to routers.

You should not make people confused. I cracked C4C's EVE, but as I said, it is not newest EVE NG. It is old version

mamlo
09-10-2018, 06:10 AM
You should not make people confused. I cracked C4C's EVE, but as I said, it is not newest EVE NG. It is old version

we dont need new version of EVE-NG we just need new version of Labs,

shikima
10-17-2018, 04:48 PM
Any update???

myccie2019
05-20-2019, 06:19 AM
Hi IE Forum,
Based on the EVE-NG I shared in this link below:
***Hidden content cannot be quoted.***

I would like to start a topic and discussing the solution. I will keep updating the solution in the first post.

1- TS2 Variation Set 1 - Thank Robin
***Hidden content cannot be quoted.***

Thanks,
NEXUS

Thank you very much.

Mayanaka
06-03-2019, 12:05 AM
Thank you on the update!

Mayanaka
06-03-2019, 12:06 AM
Thank you!

cc13093
06-12-2019, 04:28 AM
thanks you

earl
07-14-2019, 08:36 AM
Thanks for sharing

queved0
07-24-2019, 09:38 PM
Thanks for sharing..

pacino5
08-21-2019, 03:34 PM
This is the latest TS variations?
Only three of them?

johnhooser
01-09-2020, 04:14 AM
thank you!

theleftfoot
03-11-2020, 03:21 PM
Thank you! Cheers!

celt2005
05-07-2020, 05:43 PM
This is the latest TS variations?
Only three of them?

There were more versions. but they covered the BGP / MPLS Tickets, and followed the same patterns as BT3 ... BGP Extended community, no redistribute ospf etc ...